@@ -15,89 +15,89 @@ |
||
15 | 15 | { |
16 | 16 | |
17 | 17 | |
18 | - /** |
|
19 | - * Get a list of all test files to check. |
|
20 | - * |
|
21 | - * @param string $testFileBase The base path that the unit tests files will have. |
|
22 | - * |
|
23 | - * @return string[] |
|
24 | - */ |
|
25 | - protected function getTestFiles($testFileBase) |
|
26 | - { |
|
27 | - $testFiles = [$testFileBase.'1.inc']; |
|
28 | - |
|
29 | - $option = (bool) ini_get('short_open_tag'); |
|
30 | - if ($option === true) { |
|
31 | - $testFiles[] = $testFileBase.'2.inc'; |
|
32 | - } else { |
|
33 | - $testFiles[] = $testFileBase.'3.inc'; |
|
34 | - } |
|
35 | - |
|
36 | - return $testFiles; |
|
37 | - |
|
38 | - }//end getTestFiles() |
|
39 | - |
|
40 | - |
|
41 | - /** |
|
42 | - * Returns the lines where errors should occur. |
|
43 | - * |
|
44 | - * The key of the array should represent the line number and the value |
|
45 | - * should represent the number of errors that should occur on that line. |
|
46 | - * |
|
47 | - * @param string $testFile The name of the file being tested. |
|
48 | - * |
|
49 | - * @return array<int, int> |
|
50 | - */ |
|
51 | - public function getErrorList($testFile='') |
|
52 | - { |
|
53 | - switch ($testFile) { |
|
54 | - case 'DisallowShortOpenTagUnitTest.1.inc': |
|
55 | - return [ |
|
56 | - 5 => 1, |
|
57 | - 6 => 1, |
|
58 | - 7 => 1, |
|
59 | - 10 => 1, |
|
60 | - ]; |
|
61 | - case 'DisallowShortOpenTagUnitTest.2.inc': |
|
62 | - return [ |
|
63 | - 2 => 1, |
|
64 | - 3 => 1, |
|
65 | - 4 => 1, |
|
66 | - 7 => 1, |
|
67 | - ]; |
|
68 | - default: |
|
69 | - return []; |
|
70 | - }//end switch |
|
71 | - |
|
72 | - }//end getErrorList() |
|
73 | - |
|
74 | - |
|
75 | - /** |
|
76 | - * Returns the lines where warnings should occur. |
|
77 | - * |
|
78 | - * The key of the array should represent the line number and the value |
|
79 | - * should represent the number of warnings that should occur on that line. |
|
80 | - * |
|
81 | - * @param string $testFile The name of the file being tested. |
|
82 | - * |
|
83 | - * @return array<int, int> |
|
84 | - */ |
|
85 | - public function getWarningList($testFile='') |
|
86 | - { |
|
87 | - switch ($testFile) { |
|
88 | - case 'DisallowShortOpenTagUnitTest.1.inc': |
|
89 | - return []; |
|
90 | - case 'DisallowShortOpenTagUnitTest.3.inc': |
|
91 | - return [ |
|
92 | - 3 => 1, |
|
93 | - 6 => 1, |
|
94 | - 11 => 1, |
|
95 | - ]; |
|
96 | - default: |
|
97 | - return []; |
|
98 | - }//end switch |
|
99 | - |
|
100 | - }//end getWarningList() |
|
18 | + /** |
|
19 | + * Get a list of all test files to check. |
|
20 | + * |
|
21 | + * @param string $testFileBase The base path that the unit tests files will have. |
|
22 | + * |
|
23 | + * @return string[] |
|
24 | + */ |
|
25 | + protected function getTestFiles($testFileBase) |
|
26 | + { |
|
27 | + $testFiles = [$testFileBase.'1.inc']; |
|
28 | + |
|
29 | + $option = (bool) ini_get('short_open_tag'); |
|
30 | + if ($option === true) { |
|
31 | + $testFiles[] = $testFileBase.'2.inc'; |
|
32 | + } else { |
|
33 | + $testFiles[] = $testFileBase.'3.inc'; |
|
34 | + } |
|
35 | + |
|
36 | + return $testFiles; |
|
37 | + |
|
38 | + }//end getTestFiles() |
|
39 | + |
|
40 | + |
|
41 | + /** |
|
42 | + * Returns the lines where errors should occur. |
|
43 | + * |
|
44 | + * The key of the array should represent the line number and the value |
|
45 | + * should represent the number of errors that should occur on that line. |
|
46 | + * |
|
47 | + * @param string $testFile The name of the file being tested. |
|
48 | + * |
|
49 | + * @return array<int, int> |
|
50 | + */ |
|
51 | + public function getErrorList($testFile='') |
|
52 | + { |
|
53 | + switch ($testFile) { |
|
54 | + case 'DisallowShortOpenTagUnitTest.1.inc': |
|
55 | + return [ |
|
56 | + 5 => 1, |
|
57 | + 6 => 1, |
|
58 | + 7 => 1, |
|
59 | + 10 => 1, |
|
60 | + ]; |
|
61 | + case 'DisallowShortOpenTagUnitTest.2.inc': |
|
62 | + return [ |
|
63 | + 2 => 1, |
|
64 | + 3 => 1, |
|
65 | + 4 => 1, |
|
66 | + 7 => 1, |
|
67 | + ]; |
|
68 | + default: |
|
69 | + return []; |
|
70 | + }//end switch |
|
71 | + |
|
72 | + }//end getErrorList() |
|
73 | + |
|
74 | + |
|
75 | + /** |
|
76 | + * Returns the lines where warnings should occur. |
|
77 | + * |
|
78 | + * The key of the array should represent the line number and the value |
|
79 | + * should represent the number of warnings that should occur on that line. |
|
80 | + * |
|
81 | + * @param string $testFile The name of the file being tested. |
|
82 | + * |
|
83 | + * @return array<int, int> |
|
84 | + */ |
|
85 | + public function getWarningList($testFile='') |
|
86 | + { |
|
87 | + switch ($testFile) { |
|
88 | + case 'DisallowShortOpenTagUnitTest.1.inc': |
|
89 | + return []; |
|
90 | + case 'DisallowShortOpenTagUnitTest.3.inc': |
|
91 | + return [ |
|
92 | + 3 => 1, |
|
93 | + 6 => 1, |
|
94 | + 11 => 1, |
|
95 | + ]; |
|
96 | + default: |
|
97 | + return []; |
|
98 | + }//end switch |
|
99 | + |
|
100 | + }//end getWarningList() |
|
101 | 101 | |
102 | 102 | |
103 | 103 | }//end class |
@@ -51,22 +51,22 @@ discard block |
||
51 | 51 | public function getErrorList($testFile='') |
52 | 52 | { |
53 | 53 | switch ($testFile) { |
54 | - case 'DisallowShortOpenTagUnitTest.1.inc': |
|
55 | - return [ |
|
56 | - 5 => 1, |
|
57 | - 6 => 1, |
|
58 | - 7 => 1, |
|
59 | - 10 => 1, |
|
60 | - ]; |
|
61 | - case 'DisallowShortOpenTagUnitTest.2.inc': |
|
62 | - return [ |
|
63 | - 2 => 1, |
|
64 | - 3 => 1, |
|
65 | - 4 => 1, |
|
66 | - 7 => 1, |
|
67 | - ]; |
|
68 | - default: |
|
69 | - return []; |
|
54 | + case 'DisallowShortOpenTagUnitTest.1.inc': |
|
55 | + return [ |
|
56 | + 5 => 1, |
|
57 | + 6 => 1, |
|
58 | + 7 => 1, |
|
59 | + 10 => 1, |
|
60 | + ]; |
|
61 | + case 'DisallowShortOpenTagUnitTest.2.inc': |
|
62 | + return [ |
|
63 | + 2 => 1, |
|
64 | + 3 => 1, |
|
65 | + 4 => 1, |
|
66 | + 7 => 1, |
|
67 | + ]; |
|
68 | + default: |
|
69 | + return []; |
|
70 | 70 | }//end switch |
71 | 71 | |
72 | 72 | }//end getErrorList() |
@@ -85,16 +85,16 @@ discard block |
||
85 | 85 | public function getWarningList($testFile='') |
86 | 86 | { |
87 | 87 | switch ($testFile) { |
88 | - case 'DisallowShortOpenTagUnitTest.1.inc': |
|
89 | - return []; |
|
90 | - case 'DisallowShortOpenTagUnitTest.3.inc': |
|
91 | - return [ |
|
92 | - 3 => 1, |
|
93 | - 6 => 1, |
|
94 | - 11 => 1, |
|
95 | - ]; |
|
96 | - default: |
|
97 | - return []; |
|
88 | + case 'DisallowShortOpenTagUnitTest.1.inc': |
|
89 | + return []; |
|
90 | + case 'DisallowShortOpenTagUnitTest.3.inc': |
|
91 | + return [ |
|
92 | + 3 => 1, |
|
93 | + 6 => 1, |
|
94 | + 11 => 1, |
|
95 | + ]; |
|
96 | + default: |
|
97 | + return []; |
|
98 | 98 | }//end switch |
99 | 99 | |
100 | 100 | }//end getWarningList() |
@@ -22,15 +22,15 @@ discard block |
||
22 | 22 | * |
23 | 23 | * @return string[] |
24 | 24 | */ |
25 | - protected function getTestFiles($testFileBase) |
|
25 | + protected function getTestFiles( $testFileBase ) |
|
26 | 26 | { |
27 | - $testFiles = [$testFileBase.'1.inc']; |
|
27 | + $testFiles = [ $testFileBase . '1.inc' ]; |
|
28 | 28 | |
29 | - $option = (bool) ini_get('short_open_tag'); |
|
30 | - if ($option === true) { |
|
31 | - $testFiles[] = $testFileBase.'2.inc'; |
|
29 | + $option = (bool)ini_get( 'short_open_tag' ); |
|
30 | + if ( $option === true ) { |
|
31 | + $testFiles[ ] = $testFileBase . '2.inc'; |
|
32 | 32 | } else { |
33 | - $testFiles[] = $testFileBase.'3.inc'; |
|
33 | + $testFiles[ ] = $testFileBase . '3.inc'; |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | return $testFiles; |
@@ -48,9 +48,9 @@ discard block |
||
48 | 48 | * |
49 | 49 | * @return array<int, int> |
50 | 50 | */ |
51 | - public function getErrorList($testFile='') |
|
51 | + public function getErrorList( $testFile = '' ) |
|
52 | 52 | { |
53 | - switch ($testFile) { |
|
53 | + switch ( $testFile ) { |
|
54 | 54 | case 'DisallowShortOpenTagUnitTest.1.inc': |
55 | 55 | return [ |
56 | 56 | 5 => 1, |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | 7 => 1, |
67 | 67 | ]; |
68 | 68 | default: |
69 | - return []; |
|
69 | + return [ ]; |
|
70 | 70 | }//end switch |
71 | 71 | |
72 | 72 | }//end getErrorList() |
@@ -82,11 +82,11 @@ discard block |
||
82 | 82 | * |
83 | 83 | * @return array<int, int> |
84 | 84 | */ |
85 | - public function getWarningList($testFile='') |
|
85 | + public function getWarningList( $testFile = '' ) |
|
86 | 86 | { |
87 | - switch ($testFile) { |
|
87 | + switch ( $testFile ) { |
|
88 | 88 | case 'DisallowShortOpenTagUnitTest.1.inc': |
89 | - return []; |
|
89 | + return [ ]; |
|
90 | 90 | case 'DisallowShortOpenTagUnitTest.3.inc': |
91 | 91 | return [ |
92 | 92 | 3 => 1, |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | 11 => 1, |
95 | 95 | ]; |
96 | 96 | default: |
97 | - return []; |
|
97 | + return [ ]; |
|
98 | 98 | }//end switch |
99 | 99 | |
100 | 100 | }//end getWarningList() |
@@ -11,8 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest; |
13 | 13 | |
14 | -class DisallowShortOpenTagUnitTest extends AbstractSniffUnitTest |
|
15 | -{ |
|
14 | +class DisallowShortOpenTagUnitTest extends AbstractSniffUnitTest { |
|
16 | 15 | |
17 | 16 | |
18 | 17 | /** |
@@ -22,8 +21,7 @@ discard block |
||
22 | 21 | * |
23 | 22 | * @return string[] |
24 | 23 | */ |
25 | - protected function getTestFiles($testFileBase) |
|
26 | - { |
|
24 | + protected function getTestFiles($testFileBase) { |
|
27 | 25 | $testFiles = [$testFileBase.'1.inc']; |
28 | 26 | |
29 | 27 | $option = (bool) ini_get('short_open_tag'); |
@@ -48,8 +46,7 @@ discard block |
||
48 | 46 | * |
49 | 47 | * @return array<int, int> |
50 | 48 | */ |
51 | - public function getErrorList($testFile='') |
|
52 | - { |
|
49 | + public function getErrorList($testFile='') { |
|
53 | 50 | switch ($testFile) { |
54 | 51 | case 'DisallowShortOpenTagUnitTest.1.inc': |
55 | 52 | return [ |
@@ -82,8 +79,7 @@ discard block |
||
82 | 79 | * |
83 | 80 | * @return array<int, int> |
84 | 81 | */ |
85 | - public function getWarningList($testFile='') |
|
86 | - { |
|
82 | + public function getWarningList($testFile='') { |
|
87 | 83 | switch ($testFile) { |
88 | 84 | case 'DisallowShortOpenTagUnitTest.1.inc': |
89 | 85 | return []; |
@@ -17,15 +17,15 @@ |
||
17 | 17 | const PRIVATE; |
18 | 18 | HttpStatus::CONTINUE; |
19 | 19 | $c = Function ($f) { |
20 | - Yield $f; |
|
21 | - Yield From fun(); |
|
20 | + Yield $f; |
|
21 | + Yield From fun(); |
|
22 | 22 | }; |
23 | 23 | class X extends Y { |
24 | - public function m() { |
|
25 | - Parent::m(); |
|
26 | - } |
|
27 | - public function n() { |
|
28 | - Self::n(); |
|
29 | - } |
|
24 | + public function m() { |
|
25 | + Parent::m(); |
|
26 | + } |
|
27 | + public function n() { |
|
28 | + Self::n(); |
|
29 | + } |
|
30 | 30 | } |
31 | 31 | function |
@@ -3,20 +3,20 @@ |
||
3 | 3 | class Something extends SomethingElse implements Whatever {} |
4 | 4 | abstract public private protected function whatever() {} |
5 | 5 | const array(); |
6 | -foreach ($var as $var) { exit; } |
|
7 | -if ($a and $b or $c xor $d) { die; } elseif( $var ) { } else {} |
|
6 | +foreach ( $var as $var ) { exit; } |
|
7 | +if ( $a and $b or $c xor $d ) { die; } elseif ( $var ) { } else {} |
|
8 | 8 | goto a; |
9 | 9 | |
10 | 10 | Class Something EXTENDS SomethingElse implementS Whatever {} |
11 | 11 | Abstract Public Private Protected function whatever() {} |
12 | 12 | CONST array(); |
13 | -ForEach ($var As $var) { Exit; } |
|
14 | -If ($a AND $b OR $c XOR $d) { Die; } ElseIf( $var ) { } Else {} |
|
13 | +ForEach ( $var As $var ) { Exit; } |
|
14 | +If ( $a AND $b OR $c XOR $d ) { Die; } ElseIf ( $var ) { } Else {} |
|
15 | 15 | GOTO a; |
16 | -$b = function (Array $a) {}; |
|
16 | +$b = function( Array $a ) {}; |
|
17 | 17 | const PRIVATE; |
18 | 18 | HttpStatus::CONTINUE; |
19 | -$c = Function ($f) { |
|
19 | +$c = Function( $f ) { |
|
20 | 20 | Yield $f; |
21 | 21 | Yield From fun(); |
22 | 22 | }; |
@@ -7,17 +7,17 @@ |
||
7 | 7 | if ($a and $b or $c xor $d) { die; } elseif( $var ) { } else {} |
8 | 8 | goto a; |
9 | 9 | |
10 | -Class Something EXTENDS SomethingElse implementS Whatever {} |
|
11 | -Abstract Public Private Protected function whatever() {} |
|
12 | -CONST array(); |
|
13 | -ForEach ($var As $var) { Exit; } |
|
14 | -If ($a AND $b OR $c XOR $d) { Die; } ElseIf( $var ) { } Else {} |
|
15 | -GOTO a; |
|
16 | -$b = function (Array $a) {}; |
|
17 | -const PRIVATE; |
|
18 | -HttpStatus::CONTINUE; |
|
19 | -$c = Function ($f) { |
|
20 | - Yield $f; |
|
10 | +class Something extends SomethingElse implements Whatever {} |
|
11 | +abstract public private protected function whatever() {} |
|
12 | +const array(); |
|
13 | +foreach ($var as $var) { exit; } |
|
14 | +if ($a and $b or $c xor $d) { die; } elseif( $var ) { } else {} |
|
15 | +goto a; |
|
16 | +$b = function (array $a) {}; |
|
17 | +const private; |
|
18 | +HttpStatus::continue; |
|
19 | +$c = function ($f) { |
|
20 | + yield $f; |
|
21 | 21 | Yield From fun(); |
22 | 22 | }; |
23 | 23 | class X extends Y { |
@@ -7,9 +7,9 @@ |
||
7 | 7 | echo 'Bar'; |
8 | 8 | |
9 | 9 | for($i=0,$j=50; $i<100; $i++) { |
10 | - while($j--) { |
|
11 | - if($j==17) goto end; |
|
12 | - } |
|
10 | + while($j--) { |
|
11 | + if($j==17) goto end; |
|
12 | + } |
|
13 | 13 | } |
14 | 14 | echo "i = $i"; |
15 | 15 |
@@ -6,9 +6,9 @@ |
||
6 | 6 | a: |
7 | 7 | echo 'Bar'; |
8 | 8 | |
9 | -for($i=0,$j=50; $i<100; $i++) { |
|
10 | - while($j--) { |
|
11 | - if($j==17) goto end; |
|
9 | +for ( $i = 0, $j = 50; $i < 100; $i++ ) { |
|
10 | + while ( $j-- ) { |
|
11 | + if ( $j == 17 ) goto end; |
|
12 | 12 | } |
13 | 13 | } |
14 | 14 | echo "i = $i"; |
@@ -8,7 +8,9 @@ |
||
8 | 8 | |
9 | 9 | for($i=0,$j=50; $i<100; $i++) { |
10 | 10 | while($j--) { |
11 | - if($j==17) goto end; |
|
11 | + if($j==17) { |
|
12 | + goto end; |
|
13 | + } |
|
12 | 14 | } |
13 | 15 | } |
14 | 16 | echo "i = $i"; |
@@ -15,40 +15,40 @@ |
||
15 | 15 | { |
16 | 16 | |
17 | 17 | |
18 | - /** |
|
19 | - * Returns the lines where errors should occur. |
|
20 | - * |
|
21 | - * The key of the array should represent the line number and the value |
|
22 | - * should represent the number of errors that should occur on that line. |
|
23 | - * |
|
24 | - * @return array<int, int> |
|
25 | - */ |
|
26 | - public function getErrorList() |
|
27 | - { |
|
28 | - $errors = [ |
|
29 | - 2 => 1, |
|
30 | - 4 => 1, |
|
31 | - 6 => 1, |
|
32 | - ]; |
|
33 | - |
|
34 | - return $errors; |
|
35 | - |
|
36 | - }//end getErrorList() |
|
37 | - |
|
38 | - |
|
39 | - /** |
|
40 | - * Returns the lines where warnings should occur. |
|
41 | - * |
|
42 | - * The key of the array should represent the line number and the value |
|
43 | - * should represent the number of warnings that should occur on that line. |
|
44 | - * |
|
45 | - * @return array<int, int> |
|
46 | - */ |
|
47 | - public function getWarningList() |
|
48 | - { |
|
49 | - return []; |
|
50 | - |
|
51 | - }//end getWarningList() |
|
18 | + /** |
|
19 | + * Returns the lines where errors should occur. |
|
20 | + * |
|
21 | + * The key of the array should represent the line number and the value |
|
22 | + * should represent the number of errors that should occur on that line. |
|
23 | + * |
|
24 | + * @return array<int, int> |
|
25 | + */ |
|
26 | + public function getErrorList() |
|
27 | + { |
|
28 | + $errors = [ |
|
29 | + 2 => 1, |
|
30 | + 4 => 1, |
|
31 | + 6 => 1, |
|
32 | + ]; |
|
33 | + |
|
34 | + return $errors; |
|
35 | + |
|
36 | + }//end getErrorList() |
|
37 | + |
|
38 | + |
|
39 | + /** |
|
40 | + * Returns the lines where warnings should occur. |
|
41 | + * |
|
42 | + * The key of the array should represent the line number and the value |
|
43 | + * should represent the number of warnings that should occur on that line. |
|
44 | + * |
|
45 | + * @return array<int, int> |
|
46 | + */ |
|
47 | + public function getWarningList() |
|
48 | + { |
|
49 | + return []; |
|
50 | + |
|
51 | + }//end getWarningList() |
|
52 | 52 | |
53 | 53 | |
54 | 54 | }//end class |
@@ -11,8 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest; |
13 | 13 | |
14 | -class ForbiddenFunctionsUnitTest extends AbstractSniffUnitTest |
|
15 | -{ |
|
14 | +class ForbiddenFunctionsUnitTest extends AbstractSniffUnitTest { |
|
16 | 15 | |
17 | 16 | |
18 | 17 | /** |
@@ -23,8 +22,7 @@ discard block |
||
23 | 22 | * |
24 | 23 | * @return array<int, int> |
25 | 24 | */ |
26 | - public function getErrorList() |
|
27 | - { |
|
25 | + public function getErrorList() { |
|
28 | 26 | $errors = [ |
29 | 27 | 2 => 1, |
30 | 28 | 4 => 1, |
@@ -44,8 +42,7 @@ discard block |
||
44 | 42 | * |
45 | 43 | * @return array<int, int> |
46 | 44 | */ |
47 | - public function getWarningList() |
|
48 | - { |
|
45 | + public function getWarningList() { |
|
49 | 46 | return []; |
50 | 47 | |
51 | 48 | }//end getWarningList() |
@@ -64,7 +64,7 @@ |
||
64 | 64 | */ |
65 | 65 | public function getWarningList() |
66 | 66 | { |
67 | - return []; |
|
67 | + return [ ]; |
|
68 | 68 | |
69 | 69 | }//end getWarningList() |
70 | 70 |
@@ -4,7 +4,7 @@ |
||
4 | 4 | <script language="php"> |
5 | 5 | echo $var; |
6 | 6 | </script> |
7 | -<script language='php'>echo $var;</script> |
|
7 | +<script language='php'>echo $var; </script> |
|
8 | 8 | <script type="text/php" language="php"> |
9 | 9 | echo $var; |
10 | 10 | </script> |
@@ -15,34 +15,34 @@ |
||
15 | 15 | { |
16 | 16 | |
17 | 17 | |
18 | - /** |
|
19 | - * Returns the lines where errors should occur. |
|
20 | - * |
|
21 | - * The key of the array should represent the line number and the value |
|
22 | - * should represent the number of errors that should occur on that line. |
|
23 | - * |
|
24 | - * @return array<int, int> |
|
25 | - */ |
|
26 | - public function getErrorList() |
|
27 | - { |
|
28 | - return [2 => 2]; |
|
29 | - |
|
30 | - }//end getErrorList() |
|
31 | - |
|
32 | - |
|
33 | - /** |
|
34 | - * Returns the lines where warnings should occur. |
|
35 | - * |
|
36 | - * The key of the array should represent the line number and the value |
|
37 | - * should represent the number of warnings that should occur on that line. |
|
38 | - * |
|
39 | - * @return array<int, int> |
|
40 | - */ |
|
41 | - public function getWarningList() |
|
42 | - { |
|
43 | - return []; |
|
44 | - |
|
45 | - }//end getWarningList() |
|
18 | + /** |
|
19 | + * Returns the lines where errors should occur. |
|
20 | + * |
|
21 | + * The key of the array should represent the line number and the value |
|
22 | + * should represent the number of errors that should occur on that line. |
|
23 | + * |
|
24 | + * @return array<int, int> |
|
25 | + */ |
|
26 | + public function getErrorList() |
|
27 | + { |
|
28 | + return [2 => 2]; |
|
29 | + |
|
30 | + }//end getErrorList() |
|
31 | + |
|
32 | + |
|
33 | + /** |
|
34 | + * Returns the lines where warnings should occur. |
|
35 | + * |
|
36 | + * The key of the array should represent the line number and the value |
|
37 | + * should represent the number of warnings that should occur on that line. |
|
38 | + * |
|
39 | + * @return array<int, int> |
|
40 | + */ |
|
41 | + public function getWarningList() |
|
42 | + { |
|
43 | + return []; |
|
44 | + |
|
45 | + }//end getWarningList() |
|
46 | 46 | |
47 | 47 | |
48 | 48 | }//end class |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | */ |
26 | 26 | public function getErrorList() |
27 | 27 | { |
28 | - return [2 => 2]; |
|
28 | + return [ 2 => 2 ]; |
|
29 | 29 | |
30 | 30 | }//end getErrorList() |
31 | 31 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | public function getWarningList() |
42 | 42 | { |
43 | - return []; |
|
43 | + return [ ]; |
|
44 | 44 | |
45 | 45 | }//end getWarningList() |
46 | 46 |
@@ -11,8 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest; |
13 | 13 | |
14 | -class BacktickOperatorUnitTest extends AbstractSniffUnitTest |
|
15 | -{ |
|
14 | +class BacktickOperatorUnitTest extends AbstractSniffUnitTest { |
|
16 | 15 | |
17 | 16 | |
18 | 17 | /** |
@@ -23,8 +22,7 @@ discard block |
||
23 | 22 | * |
24 | 23 | * @return array<int, int> |
25 | 24 | */ |
26 | - public function getErrorList() |
|
27 | - { |
|
25 | + public function getErrorList() { |
|
28 | 26 | return [2 => 2]; |
29 | 27 | |
30 | 28 | }//end getErrorList() |
@@ -38,8 +36,7 @@ discard block |
||
38 | 36 | * |
39 | 37 | * @return array<int, int> |
40 | 38 | */ |
41 | - public function getWarningList() |
|
42 | - { |
|
39 | + public function getWarningList() { |
|
43 | 40 | return []; |
44 | 41 | |
45 | 42 | }//end getWarningList() |
@@ -15,34 +15,34 @@ |
||
15 | 15 | { |
16 | 16 | |
17 | 17 | |
18 | - /** |
|
19 | - * Returns the lines where errors should occur. |
|
20 | - * |
|
21 | - * The key of the array should represent the line number and the value |
|
22 | - * should represent the number of errors that should occur on that line. |
|
23 | - * |
|
24 | - * @return array<int, int> |
|
25 | - */ |
|
26 | - public function getErrorList() |
|
27 | - { |
|
28 | - return [2 => 1]; |
|
29 | - |
|
30 | - }//end getErrorList() |
|
31 | - |
|
32 | - |
|
33 | - /** |
|
34 | - * Returns the lines where warnings should occur. |
|
35 | - * |
|
36 | - * The key of the array should represent the line number and the value |
|
37 | - * should represent the number of warnings that should occur on that line. |
|
38 | - * |
|
39 | - * @return array<int, int> |
|
40 | - */ |
|
41 | - public function getWarningList() |
|
42 | - { |
|
43 | - return []; |
|
44 | - |
|
45 | - }//end getWarningList() |
|
18 | + /** |
|
19 | + * Returns the lines where errors should occur. |
|
20 | + * |
|
21 | + * The key of the array should represent the line number and the value |
|
22 | + * should represent the number of errors that should occur on that line. |
|
23 | + * |
|
24 | + * @return array<int, int> |
|
25 | + */ |
|
26 | + public function getErrorList() |
|
27 | + { |
|
28 | + return [2 => 1]; |
|
29 | + |
|
30 | + }//end getErrorList() |
|
31 | + |
|
32 | + |
|
33 | + /** |
|
34 | + * Returns the lines where warnings should occur. |
|
35 | + * |
|
36 | + * The key of the array should represent the line number and the value |
|
37 | + * should represent the number of warnings that should occur on that line. |
|
38 | + * |
|
39 | + * @return array<int, int> |
|
40 | + */ |
|
41 | + public function getWarningList() |
|
42 | + { |
|
43 | + return []; |
|
44 | + |
|
45 | + }//end getWarningList() |
|
46 | 46 | |
47 | 47 | |
48 | 48 | }//end class |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | */ |
26 | 26 | public function getErrorList() |
27 | 27 | { |
28 | - return [2 => 1]; |
|
28 | + return [ 2 => 1 ]; |
|
29 | 29 | |
30 | 30 | }//end getErrorList() |
31 | 31 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | public function getWarningList() |
42 | 42 | { |
43 | - return []; |
|
43 | + return [ ]; |
|
44 | 44 | |
45 | 45 | }//end getWarningList() |
46 | 46 |
@@ -11,8 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest; |
13 | 13 | |
14 | -class SAPIUsageUnitTest extends AbstractSniffUnitTest |
|
15 | -{ |
|
14 | +class SAPIUsageUnitTest extends AbstractSniffUnitTest { |
|
16 | 15 | |
17 | 16 | |
18 | 17 | /** |
@@ -23,8 +22,7 @@ discard block |
||
23 | 22 | * |
24 | 23 | * @return array<int, int> |
25 | 24 | */ |
26 | - public function getErrorList() |
|
27 | - { |
|
25 | + public function getErrorList() { |
|
28 | 26 | return [2 => 1]; |
29 | 27 | |
30 | 28 | }//end getErrorList() |
@@ -38,8 +36,7 @@ discard block |
||
38 | 36 | * |
39 | 37 | * @return array<int, int> |
40 | 38 | */ |
41 | - public function getWarningList() |
|
42 | - { |
|
39 | + public function getWarningList() { |
|
43 | 40 | return []; |
44 | 41 | |
45 | 42 | }//end getWarningList() |
@@ -16,34 +16,34 @@ |
||
16 | 16 | { |
17 | 17 | |
18 | 18 | |
19 | - /** |
|
20 | - * Returns the lines where errors should occur. |
|
21 | - * |
|
22 | - * The key of the array should represent the line number and the value |
|
23 | - * should represent the number of errors that should occur on that line. |
|
24 | - * |
|
25 | - * @return array<int, int> |
|
26 | - */ |
|
27 | - public function getErrorList() |
|
28 | - { |
|
29 | - return [3 => 1]; |
|
30 | - |
|
31 | - }//end getErrorList() |
|
32 | - |
|
33 | - |
|
34 | - /** |
|
35 | - * Returns the lines where warnings should occur. |
|
36 | - * |
|
37 | - * The key of the array should represent the line number and the value |
|
38 | - * should represent the number of warnings that should occur on that line. |
|
39 | - * |
|
40 | - * @return array<int, int> |
|
41 | - */ |
|
42 | - public function getWarningList() |
|
43 | - { |
|
44 | - return []; |
|
45 | - |
|
46 | - }//end getWarningList() |
|
19 | + /** |
|
20 | + * Returns the lines where errors should occur. |
|
21 | + * |
|
22 | + * The key of the array should represent the line number and the value |
|
23 | + * should represent the number of errors that should occur on that line. |
|
24 | + * |
|
25 | + * @return array<int, int> |
|
26 | + */ |
|
27 | + public function getErrorList() |
|
28 | + { |
|
29 | + return [3 => 1]; |
|
30 | + |
|
31 | + }//end getErrorList() |
|
32 | + |
|
33 | + |
|
34 | + /** |
|
35 | + * Returns the lines where warnings should occur. |
|
36 | + * |
|
37 | + * The key of the array should represent the line number and the value |
|
38 | + * should represent the number of warnings that should occur on that line. |
|
39 | + * |
|
40 | + * @return array<int, int> |
|
41 | + */ |
|
42 | + public function getWarningList() |
|
43 | + { |
|
44 | + return []; |
|
45 | + |
|
46 | + }//end getWarningList() |
|
47 | 47 | |
48 | 48 | |
49 | 49 | }//end class |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public function getErrorList() |
28 | 28 | { |
29 | - return [3 => 1]; |
|
29 | + return [ 3 => 1 ]; |
|
30 | 30 | |
31 | 31 | }//end getErrorList() |
32 | 32 | |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | public function getWarningList() |
43 | 43 | { |
44 | - return []; |
|
44 | + return [ ]; |
|
45 | 45 | |
46 | 46 | }//end getWarningList() |
47 | 47 |
@@ -12,8 +12,7 @@ discard block |
||
12 | 12 | |
13 | 13 | use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest; |
14 | 14 | |
15 | -class SyntaxUnitTest extends AbstractSniffUnitTest |
|
16 | -{ |
|
15 | +class SyntaxUnitTest extends AbstractSniffUnitTest { |
|
17 | 16 | |
18 | 17 | |
19 | 18 | /** |
@@ -24,8 +23,7 @@ discard block |
||
24 | 23 | * |
25 | 24 | * @return array<int, int> |
26 | 25 | */ |
27 | - public function getErrorList() |
|
28 | - { |
|
26 | + public function getErrorList() { |
|
29 | 27 | return [3 => 1]; |
30 | 28 | |
31 | 29 | }//end getErrorList() |
@@ -39,8 +37,7 @@ discard block |
||
39 | 37 | * |
40 | 38 | * @return array<int, int> |
41 | 39 | */ |
42 | - public function getWarningList() |
|
43 | - { |
|
40 | + public function getWarningList() { |
|
44 | 41 | return []; |
45 | 42 | |
46 | 43 | }//end getWarningList() |
@@ -15,49 +15,49 @@ |
||
15 | 15 | { |
16 | 16 | |
17 | 17 | |
18 | - /** |
|
19 | - * Returns the lines where errors should occur. |
|
20 | - * |
|
21 | - * The key of the array should represent the line number and the value |
|
22 | - * should represent the number of errors that should occur on that line. |
|
23 | - * |
|
24 | - * @return array<int, int> |
|
25 | - */ |
|
26 | - public function getErrorList() |
|
27 | - { |
|
28 | - return [ |
|
29 | - 7 => 1, |
|
30 | - 10 => 1, |
|
31 | - 15 => 1, |
|
32 | - 16 => 1, |
|
33 | - 23 => 1, |
|
34 | - 26 => 1, |
|
35 | - 31 => 1, |
|
36 | - 32 => 1, |
|
37 | - 39 => 1, |
|
38 | - 42 => 1, |
|
39 | - 47 => 1, |
|
40 | - 48 => 1, |
|
41 | - 70 => 1, |
|
42 | - 71 => 1, |
|
43 | - ]; |
|
44 | - |
|
45 | - }//end getErrorList() |
|
46 | - |
|
47 | - |
|
48 | - /** |
|
49 | - * Returns the lines where warnings should occur. |
|
50 | - * |
|
51 | - * The key of the array should represent the line number and the value |
|
52 | - * should represent the number of warnings that should occur on that line. |
|
53 | - * |
|
54 | - * @return array<int, int> |
|
55 | - */ |
|
56 | - public function getWarningList() |
|
57 | - { |
|
58 | - return []; |
|
59 | - |
|
60 | - }//end getWarningList() |
|
18 | + /** |
|
19 | + * Returns the lines where errors should occur. |
|
20 | + * |
|
21 | + * The key of the array should represent the line number and the value |
|
22 | + * should represent the number of errors that should occur on that line. |
|
23 | + * |
|
24 | + * @return array<int, int> |
|
25 | + */ |
|
26 | + public function getErrorList() |
|
27 | + { |
|
28 | + return [ |
|
29 | + 7 => 1, |
|
30 | + 10 => 1, |
|
31 | + 15 => 1, |
|
32 | + 16 => 1, |
|
33 | + 23 => 1, |
|
34 | + 26 => 1, |
|
35 | + 31 => 1, |
|
36 | + 32 => 1, |
|
37 | + 39 => 1, |
|
38 | + 42 => 1, |
|
39 | + 47 => 1, |
|
40 | + 48 => 1, |
|
41 | + 70 => 1, |
|
42 | + 71 => 1, |
|
43 | + ]; |
|
44 | + |
|
45 | + }//end getErrorList() |
|
46 | + |
|
47 | + |
|
48 | + /** |
|
49 | + * Returns the lines where warnings should occur. |
|
50 | + * |
|
51 | + * The key of the array should represent the line number and the value |
|
52 | + * should represent the number of warnings that should occur on that line. |
|
53 | + * |
|
54 | + * @return array<int, int> |
|
55 | + */ |
|
56 | + public function getWarningList() |
|
57 | + { |
|
58 | + return []; |
|
59 | + |
|
60 | + }//end getWarningList() |
|
61 | 61 | |
62 | 62 | |
63 | 63 | }//end class |
@@ -11,8 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest; |
13 | 13 | |
14 | -class UpperCaseConstantUnitTest extends AbstractSniffUnitTest |
|
15 | -{ |
|
14 | +class UpperCaseConstantUnitTest extends AbstractSniffUnitTest { |
|
16 | 15 | |
17 | 16 | |
18 | 17 | /** |
@@ -23,8 +22,7 @@ discard block |
||
23 | 22 | * |
24 | 23 | * @return array<int, int> |
25 | 24 | */ |
26 | - public function getErrorList() |
|
27 | - { |
|
25 | + public function getErrorList() { |
|
28 | 26 | return [ |
29 | 27 | 7 => 1, |
30 | 28 | 10 => 1, |
@@ -53,8 +51,7 @@ discard block |
||
53 | 51 | * |
54 | 52 | * @return array<int, int> |
55 | 53 | */ |
56 | - public function getWarningList() |
|
57 | - { |
|
54 | + public function getWarningList() { |
|
58 | 55 | return []; |
59 | 56 | |
60 | 57 | }//end getWarningList() |
@@ -64,7 +64,7 @@ |
||
64 | 64 | */ |
65 | 65 | public function getWarningList() |
66 | 66 | { |
67 | - return []; |
|
67 | + return [ ]; |
|
68 | 68 | |
69 | 69 | }//end getWarningList() |
70 | 70 |