We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3ccf0d4 + 9ec36ed commit bf06367Copy full SHA for bf06367
tests/php-ts-mode-resources/indent.erts
@@ -10,6 +10,8 @@ Point-Char: |
10
Name: Basic
11
12
=-=
13
+<?php
14
+
15
class Basic {
16
public function basic(): void {
17
return;
@@ -20,9 +22,45 @@ class Basic {
20
22
Name: Empty Line
21
23
24
25
26
27
class EmptyLine {
28
public function emptyLine(): void {
29
|
30
}
31
32
=-=-=
33
+Name: Function
34
35
+=-=
36
37
38
+function basic(): void {
39
+ return;
40
+}
41
+=-=-=
42
43
+Name: Function with a PHPDoc
44
45
46
47
48
+/**
49
+ * Summary
50
+ */
51
+function with_phpdoc(): void {
52
53
54
55
56
+Name: Namespace function
57
58
59
60
61
+namespace Ns;
62
63
+function ns_func(): void {
64
65
66
0 commit comments