@@ -81,7 +81,7 @@ |
||
81 | 81 | $tokens[$stackPtr]['content'], |
82 | 82 | ($braceLine - $classLine - 1), |
83 | 83 | ]; |
84 | - $fix = $phpcsFile->addFixableError($error, $curlyBrace, 'OpenBraceWrongLine', $data); |
|
84 | + $fix = $phpcsFile->addFixableError($error, $curlyBrace, 'OpenBraceWrongLine', $data); |
|
85 | 85 | if ($fix === true) { |
86 | 86 | $phpcsFile->fixer->beginChangeset(); |
87 | 87 | for ($i = ($curlyBrace - 1); $i > $lastContent; $i--) { |
@@ -16,134 +16,134 @@ |
||
16 | 16 | { |
17 | 17 | |
18 | 18 | |
19 | - /** |
|
20 | - * Returns an array of tokens this test wants to listen for. |
|
21 | - * |
|
22 | - * @return array |
|
23 | - */ |
|
24 | - public function register() |
|
25 | - { |
|
26 | - return [ |
|
27 | - T_CLASS, |
|
28 | - T_INTERFACE, |
|
29 | - T_TRAIT, |
|
30 | - ]; |
|
31 | - |
|
32 | - }//end register() |
|
33 | - |
|
34 | - |
|
35 | - /** |
|
36 | - * Processes this test, when one of its tokens is encountered. |
|
37 | - * |
|
38 | - * @param \PHP_CodeSniffer\Files\File $phpcsFile The file being scanned. |
|
39 | - * @param integer $stackPtr The position of the current token in the |
|
40 | - * stack passed in $tokens. |
|
41 | - * |
|
42 | - * @return void |
|
43 | - */ |
|
44 | - public function process(File $phpcsFile, $stackPtr) |
|
45 | - { |
|
46 | - $tokens = $phpcsFile->getTokens(); |
|
47 | - $errorData = [strtolower($tokens[$stackPtr]['content'])]; |
|
48 | - |
|
49 | - if (isset($tokens[$stackPtr]['scope_opener']) === false) { |
|
50 | - $error = 'Possible parse error: %s missing opening or closing brace'; |
|
51 | - $phpcsFile->addWarning($error, $stackPtr, 'MissingBrace', $errorData); |
|
52 | - return; |
|
53 | - } |
|
54 | - |
|
55 | - $curlyBrace = $tokens[$stackPtr]['scope_opener']; |
|
56 | - $lastContent = $phpcsFile->findPrevious(T_WHITESPACE, ($curlyBrace - 1), $stackPtr, true); |
|
57 | - $classLine = $tokens[$lastContent]['line']; |
|
58 | - $braceLine = $tokens[$curlyBrace]['line']; |
|
59 | - if ($braceLine === $classLine) { |
|
60 | - $phpcsFile->recordMetric($stackPtr, 'Class opening brace placement', 'same line'); |
|
61 | - $error = 'Opening brace of a %s must be on the line after the definition'; |
|
62 | - $fix = $phpcsFile->addFixableError($error, $curlyBrace, 'OpenBraceNewLine', $errorData); |
|
63 | - if ($fix === true) { |
|
64 | - $phpcsFile->fixer->beginChangeset(); |
|
65 | - if ($tokens[($curlyBrace - 1)]['code'] === T_WHITESPACE) { |
|
66 | - $phpcsFile->fixer->replaceToken(($curlyBrace - 1), ''); |
|
67 | - } |
|
68 | - |
|
69 | - $phpcsFile->fixer->addNewlineBefore($curlyBrace); |
|
70 | - $phpcsFile->fixer->endChangeset(); |
|
71 | - } |
|
72 | - |
|
73 | - return; |
|
74 | - } else { |
|
75 | - $phpcsFile->recordMetric($stackPtr, 'Class opening brace placement', 'new line'); |
|
76 | - |
|
77 | - if ($braceLine > ($classLine + 1)) { |
|
78 | - $error = 'Opening brace of a %s must be on the line following the %s declaration; found %s line(s)'; |
|
79 | - $data = [ |
|
80 | - $tokens[$stackPtr]['content'], |
|
81 | - $tokens[$stackPtr]['content'], |
|
82 | - ($braceLine - $classLine - 1), |
|
83 | - ]; |
|
84 | - $fix = $phpcsFile->addFixableError($error, $curlyBrace, 'OpenBraceWrongLine', $data); |
|
85 | - if ($fix === true) { |
|
86 | - $phpcsFile->fixer->beginChangeset(); |
|
87 | - for ($i = ($curlyBrace - 1); $i > $lastContent; $i--) { |
|
88 | - if ($tokens[$i]['line'] === ($tokens[$curlyBrace]['line'] + 1)) { |
|
89 | - break; |
|
90 | - } |
|
91 | - |
|
92 | - $phpcsFile->fixer->replaceToken($i, ''); |
|
93 | - } |
|
94 | - |
|
95 | - $phpcsFile->fixer->endChangeset(); |
|
96 | - } |
|
97 | - |
|
98 | - return; |
|
99 | - }//end if |
|
100 | - }//end if |
|
101 | - |
|
102 | - if ($tokens[($curlyBrace + 1)]['content'] !== $phpcsFile->eolChar) { |
|
103 | - $error = 'Opening %s brace must be on a line by itself'; |
|
104 | - |
|
105 | - $nextNonWhitespace = $phpcsFile->findNext(T_WHITESPACE, ($curlyBrace + 1), null, true); |
|
106 | - if ($tokens[$nextNonWhitespace]['code'] === T_PHPCS_IGNORE) { |
|
107 | - // Don't auto-fix if the next thing is a PHPCS ignore annotation. |
|
108 | - $phpcsFile->addError($error, $curlyBrace, 'OpenBraceNotAlone', $errorData); |
|
109 | - } else { |
|
110 | - $fix = $phpcsFile->addFixableError($error, $curlyBrace, 'OpenBraceNotAlone', $errorData); |
|
111 | - if ($fix === true) { |
|
112 | - $phpcsFile->fixer->addNewline($curlyBrace); |
|
113 | - } |
|
114 | - } |
|
115 | - } |
|
116 | - |
|
117 | - if ($tokens[($curlyBrace - 1)]['code'] === T_WHITESPACE) { |
|
118 | - $prevContent = $tokens[($curlyBrace - 1)]['content']; |
|
119 | - if ($prevContent === $phpcsFile->eolChar) { |
|
120 | - $spaces = 0; |
|
121 | - } else { |
|
122 | - $spaces = $tokens[($curlyBrace - 1)]['length']; |
|
123 | - } |
|
124 | - |
|
125 | - $first = $phpcsFile->findFirstOnLine(T_WHITESPACE, $stackPtr, true); |
|
126 | - $expected = ($tokens[$first]['column'] - 1); |
|
127 | - if ($spaces !== $expected) { |
|
128 | - $error = 'Expected %s spaces before opening brace; %s found'; |
|
129 | - $data = [ |
|
130 | - $expected, |
|
131 | - $spaces, |
|
132 | - ]; |
|
133 | - |
|
134 | - $fix = $phpcsFile->addFixableError($error, $curlyBrace, 'SpaceBeforeBrace', $data); |
|
135 | - if ($fix === true) { |
|
136 | - $indent = str_repeat(' ', $expected); |
|
137 | - if ($spaces === 0) { |
|
138 | - $phpcsFile->fixer->addContentBefore($curlyBrace, $indent); |
|
139 | - } else { |
|
140 | - $phpcsFile->fixer->replaceToken(($curlyBrace - 1), $indent); |
|
141 | - } |
|
142 | - } |
|
143 | - } |
|
144 | - }//end if |
|
145 | - |
|
146 | - }//end process() |
|
19 | + /** |
|
20 | + * Returns an array of tokens this test wants to listen for. |
|
21 | + * |
|
22 | + * @return array |
|
23 | + */ |
|
24 | + public function register() |
|
25 | + { |
|
26 | + return [ |
|
27 | + T_CLASS, |
|
28 | + T_INTERFACE, |
|
29 | + T_TRAIT, |
|
30 | + ]; |
|
31 | + |
|
32 | + }//end register() |
|
33 | + |
|
34 | + |
|
35 | + /** |
|
36 | + * Processes this test, when one of its tokens is encountered. |
|
37 | + * |
|
38 | + * @param \PHP_CodeSniffer\Files\File $phpcsFile The file being scanned. |
|
39 | + * @param integer $stackPtr The position of the current token in the |
|
40 | + * stack passed in $tokens. |
|
41 | + * |
|
42 | + * @return void |
|
43 | + */ |
|
44 | + public function process(File $phpcsFile, $stackPtr) |
|
45 | + { |
|
46 | + $tokens = $phpcsFile->getTokens(); |
|
47 | + $errorData = [strtolower($tokens[$stackPtr]['content'])]; |
|
48 | + |
|
49 | + if (isset($tokens[$stackPtr]['scope_opener']) === false) { |
|
50 | + $error = 'Possible parse error: %s missing opening or closing brace'; |
|
51 | + $phpcsFile->addWarning($error, $stackPtr, 'MissingBrace', $errorData); |
|
52 | + return; |
|
53 | + } |
|
54 | + |
|
55 | + $curlyBrace = $tokens[$stackPtr]['scope_opener']; |
|
56 | + $lastContent = $phpcsFile->findPrevious(T_WHITESPACE, ($curlyBrace - 1), $stackPtr, true); |
|
57 | + $classLine = $tokens[$lastContent]['line']; |
|
58 | + $braceLine = $tokens[$curlyBrace]['line']; |
|
59 | + if ($braceLine === $classLine) { |
|
60 | + $phpcsFile->recordMetric($stackPtr, 'Class opening brace placement', 'same line'); |
|
61 | + $error = 'Opening brace of a %s must be on the line after the definition'; |
|
62 | + $fix = $phpcsFile->addFixableError($error, $curlyBrace, 'OpenBraceNewLine', $errorData); |
|
63 | + if ($fix === true) { |
|
64 | + $phpcsFile->fixer->beginChangeset(); |
|
65 | + if ($tokens[($curlyBrace - 1)]['code'] === T_WHITESPACE) { |
|
66 | + $phpcsFile->fixer->replaceToken(($curlyBrace - 1), ''); |
|
67 | + } |
|
68 | + |
|
69 | + $phpcsFile->fixer->addNewlineBefore($curlyBrace); |
|
70 | + $phpcsFile->fixer->endChangeset(); |
|
71 | + } |
|
72 | + |
|
73 | + return; |
|
74 | + } else { |
|
75 | + $phpcsFile->recordMetric($stackPtr, 'Class opening brace placement', 'new line'); |
|
76 | + |
|
77 | + if ($braceLine > ($classLine + 1)) { |
|
78 | + $error = 'Opening brace of a %s must be on the line following the %s declaration; found %s line(s)'; |
|
79 | + $data = [ |
|
80 | + $tokens[$stackPtr]['content'], |
|
81 | + $tokens[$stackPtr]['content'], |
|
82 | + ($braceLine - $classLine - 1), |
|
83 | + ]; |
|
84 | + $fix = $phpcsFile->addFixableError($error, $curlyBrace, 'OpenBraceWrongLine', $data); |
|
85 | + if ($fix === true) { |
|
86 | + $phpcsFile->fixer->beginChangeset(); |
|
87 | + for ($i = ($curlyBrace - 1); $i > $lastContent; $i--) { |
|
88 | + if ($tokens[$i]['line'] === ($tokens[$curlyBrace]['line'] + 1)) { |
|
89 | + break; |
|
90 | + } |
|
91 | + |
|
92 | + $phpcsFile->fixer->replaceToken($i, ''); |
|
93 | + } |
|
94 | + |
|
95 | + $phpcsFile->fixer->endChangeset(); |
|
96 | + } |
|
97 | + |
|
98 | + return; |
|
99 | + }//end if |
|
100 | + }//end if |
|
101 | + |
|
102 | + if ($tokens[($curlyBrace + 1)]['content'] !== $phpcsFile->eolChar) { |
|
103 | + $error = 'Opening %s brace must be on a line by itself'; |
|
104 | + |
|
105 | + $nextNonWhitespace = $phpcsFile->findNext(T_WHITESPACE, ($curlyBrace + 1), null, true); |
|
106 | + if ($tokens[$nextNonWhitespace]['code'] === T_PHPCS_IGNORE) { |
|
107 | + // Don't auto-fix if the next thing is a PHPCS ignore annotation. |
|
108 | + $phpcsFile->addError($error, $curlyBrace, 'OpenBraceNotAlone', $errorData); |
|
109 | + } else { |
|
110 | + $fix = $phpcsFile->addFixableError($error, $curlyBrace, 'OpenBraceNotAlone', $errorData); |
|
111 | + if ($fix === true) { |
|
112 | + $phpcsFile->fixer->addNewline($curlyBrace); |
|
113 | + } |
|
114 | + } |
|
115 | + } |
|
116 | + |
|
117 | + if ($tokens[($curlyBrace - 1)]['code'] === T_WHITESPACE) { |
|
118 | + $prevContent = $tokens[($curlyBrace - 1)]['content']; |
|
119 | + if ($prevContent === $phpcsFile->eolChar) { |
|
120 | + $spaces = 0; |
|
121 | + } else { |
|
122 | + $spaces = $tokens[($curlyBrace - 1)]['length']; |
|
123 | + } |
|
124 | + |
|
125 | + $first = $phpcsFile->findFirstOnLine(T_WHITESPACE, $stackPtr, true); |
|
126 | + $expected = ($tokens[$first]['column'] - 1); |
|
127 | + if ($spaces !== $expected) { |
|
128 | + $error = 'Expected %s spaces before opening brace; %s found'; |
|
129 | + $data = [ |
|
130 | + $expected, |
|
131 | + $spaces, |
|
132 | + ]; |
|
133 | + |
|
134 | + $fix = $phpcsFile->addFixableError($error, $curlyBrace, 'SpaceBeforeBrace', $data); |
|
135 | + if ($fix === true) { |
|
136 | + $indent = str_repeat(' ', $expected); |
|
137 | + if ($spaces === 0) { |
|
138 | + $phpcsFile->fixer->addContentBefore($curlyBrace, $indent); |
|
139 | + } else { |
|
140 | + $phpcsFile->fixer->replaceToken(($curlyBrace - 1), $indent); |
|
141 | + } |
|
142 | + } |
|
143 | + } |
|
144 | + }//end if |
|
145 | + |
|
146 | + }//end process() |
|
147 | 147 | |
148 | 148 | |
149 | 149 | }//end class |
@@ -15,42 +15,42 @@ |
||
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 | - 8 => 1, |
|
30 | - 10 => 1, |
|
31 | - 12 => 1, |
|
32 | - 14 => 1, |
|
33 | - 19 => 1, |
|
34 | - 28 => 1, |
|
35 | - 30 => 1, |
|
36 | - ]; |
|
37 | - |
|
38 | - }//end getErrorList() |
|
39 | - |
|
40 | - |
|
41 | - /** |
|
42 | - * Returns the lines where warnings should occur. |
|
43 | - * |
|
44 | - * The key of the array should represent the line number and the value |
|
45 | - * should represent the number of warnings that should occur on that line. |
|
46 | - * |
|
47 | - * @return array<int, int> |
|
48 | - */ |
|
49 | - public function getWarningList() |
|
50 | - { |
|
51 | - return []; |
|
52 | - |
|
53 | - }//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 | + 8 => 1, |
|
30 | + 10 => 1, |
|
31 | + 12 => 1, |
|
32 | + 14 => 1, |
|
33 | + 19 => 1, |
|
34 | + 28 => 1, |
|
35 | + 30 => 1, |
|
36 | + ]; |
|
37 | + |
|
38 | + }//end getErrorList() |
|
39 | + |
|
40 | + |
|
41 | + /** |
|
42 | + * Returns the lines where warnings should occur. |
|
43 | + * |
|
44 | + * The key of the array should represent the line number and the value |
|
45 | + * should represent the number of warnings that should occur on that line. |
|
46 | + * |
|
47 | + * @return array<int, int> |
|
48 | + */ |
|
49 | + public function getWarningList() |
|
50 | + { |
|
51 | + return []; |
|
52 | + |
|
53 | + }//end getWarningList() |
|
54 | 54 | |
55 | 55 | |
56 | 56 | }//end class |
@@ -15,37 +15,37 @@ |
||
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 | - |
|
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 | - 4 => 1, |
|
45 | - 16 => 1, |
|
46 | - ]; |
|
47 | - |
|
48 | - }//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 | + |
|
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 | + 4 => 1, |
|
45 | + 16 => 1, |
|
46 | + ]; |
|
47 | + |
|
48 | + }//end getWarningList() |
|
49 | 49 | |
50 | 50 | |
51 | 51 | }//end class |
@@ -15,37 +15,37 @@ |
||
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 | - |
|
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 | - 4 => 1, |
|
45 | - 13 => 1, |
|
46 | - ]; |
|
47 | - |
|
48 | - }//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 | + |
|
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 | + 4 => 1, |
|
45 | + 13 => 1, |
|
46 | + ]; |
|
47 | + |
|
48 | + }//end getWarningList() |
|
49 | 49 | |
50 | 50 | |
51 | 51 | }//end class |
@@ -15,37 +15,37 @@ |
||
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 | - |
|
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 | - 6 => 1, |
|
45 | - 10 => 1, |
|
46 | - ]; |
|
47 | - |
|
48 | - }//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 | + |
|
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 | + 6 => 1, |
|
45 | + 10 => 1, |
|
46 | + ]; |
|
47 | + |
|
48 | + }//end getWarningList() |
|
49 | 49 | |
50 | 50 | |
51 | 51 | }//end class |
@@ -60,7 +60,7 @@ |
||
60 | 60 | } else if($a ??= $b) { |
61 | 61 | } elseif( $a = 'abc' && $b = 'def' ) { |
62 | 62 | } elseif( |
63 | - $a = 'abc' |
|
63 | + $a = 'abc' |
|
64 | 64 | && $a .= 'def' |
65 | 65 | ) {} |
66 | 66 |
@@ -6,38 +6,38 @@ discard block |
||
6 | 6 | } elseif ($a !== 123) { |
7 | 7 | } elseif ($a != 123) {} |
8 | 8 | |
9 | -function abc( $a = 'default' ) {} |
|
10 | -if (in_array( $a, array( 1 => 'a', 2 => 'b' ) ) ) {} |
|
9 | +function abc($a = 'default') {} |
|
10 | +if (in_array($a, array(1 => 'a', 2 => 'b'))) {} |
|
11 | 11 | |
12 | -switch ( $a === $b ) {} |
|
13 | -switch ( true ) { |
|
12 | +switch ($a === $b) {} |
|
13 | +switch (true) { |
|
14 | 14 | case $sample == 'something': |
15 | 15 | break; |
16 | 16 | } |
17 | 17 | |
18 | -for ( $i = 0; $i == 100; $i++ ) {} |
|
19 | -for ( $i = 0; $i >= 100; $i++ ) {} |
|
20 | -for ( $i = 0; ; $i++ ) {} |
|
18 | +for ($i = 0; $i == 100; $i++) {} |
|
19 | +for ($i = 0; $i >= 100; $i++) {} |
|
20 | +for ($i = 0; ; $i++) {} |
|
21 | 21 | for (;;) {} |
22 | 22 | |
23 | 23 | do { |
24 | -} while ( $sample == false ); |
|
24 | +}while ($sample == false); |
|
25 | 25 | |
26 | -while ( $sample === false ) {} |
|
26 | +while ($sample === false) {} |
|
27 | 27 | |
28 | 28 | // Silly, but not an assignment. |
29 | 29 | if (123 = $a) {} |
30 | 30 | if (strtolower($b) = $b) {} |
31 | -if (array( 1 => 'a', 2 => 'b' ) = $b) {} |
|
31 | +if (array(1 => 'a', 2 => 'b') = $b) {} |
|
32 | 32 | |
33 | 33 | if (SOME_CONSTANT = 123) { |
34 | -} else if(self::SOME_CONSTANT -= 10) {} |
|
34 | +} else if (self::SOME_CONSTANT -= 10) {} |
|
35 | 35 | |
36 | -if ( $a() = 123 ) { |
|
37 | -} else if ( $b->something() = 123 ) { |
|
38 | -} elseif ( $c::something() = 123 ) {} |
|
36 | +if ($a() = 123) { |
|
37 | +} else if ($b->something() = 123) { |
|
38 | +} elseif ($c::something() = 123) {} |
|
39 | 39 | |
40 | -switch ( true ) { |
|
40 | +switch (true) { |
|
41 | 41 | case 'something' = $sample: |
42 | 42 | break; |
43 | 43 | } |
@@ -45,21 +45,21 @@ discard block |
||
45 | 45 | // Assignments in condition. |
46 | 46 | if ($a = 123) { |
47 | 47 | } elseif ($a = 'abc') { |
48 | -} else if( $a += 10 ) { |
|
49 | -} else if($a -= 10) { |
|
50 | -} else if($a *= 10) { |
|
51 | -} else if($a **= 10) { |
|
52 | -} else if($a /= 10) { |
|
53 | -} else if($a .= strtolower($b)) { |
|
54 | -} else if($a %= SOME_CONSTANT) { |
|
55 | -} else if($a &= 2) { |
|
56 | -} else if($a |= 2) { |
|
57 | -} else if($a ^= 2) { |
|
58 | -} else if($a <<= 2) { |
|
59 | -} else if($a >>= 2) { |
|
60 | -} else if($a ??= $b) { |
|
61 | -} elseif( $a = 'abc' && $b = 'def' ) { |
|
62 | -} elseif( |
|
48 | +} else if ($a += 10) { |
|
49 | +} else if ($a -= 10) { |
|
50 | +} else if ($a *= 10) { |
|
51 | +} else if ($a **= 10) { |
|
52 | +} else if ($a /= 10) { |
|
53 | +} else if ($a .= strtolower($b)) { |
|
54 | +} else if ($a %= SOME_CONSTANT) { |
|
55 | +} else if ($a &= 2) { |
|
56 | +} else if ($a |= 2) { |
|
57 | +} else if ($a ^= 2) { |
|
58 | +} else if ($a <<= 2) { |
|
59 | +} else if ($a >>= 2) { |
|
60 | +} else if ($a ??= $b) { |
|
61 | +} elseif ($a = 'abc' && $b = 'def') { |
|
62 | +} elseif ( |
|
63 | 63 | $a = 'abc' |
64 | 64 | && $a .= 'def' |
65 | 65 | ) {} |
@@ -70,10 +70,10 @@ discard block |
||
70 | 70 | } elseif (parent::$a *= 123) { |
71 | 71 | } elseif (static::$a = 123) { |
72 | 72 | } elseif (MyClass::$a .= 'abc') { |
73 | -} else if( $this->something += 10 ) {} |
|
73 | +} else if ($this->something += 10) {} |
|
74 | 74 | |
75 | -switch ( $a = $b ) {} |
|
76 | -switch ( true ) { |
|
75 | +switch ($a = $b) {} |
|
76 | +switch (true) { |
|
77 | 77 | case $sample = 'something': |
78 | 78 | break; |
79 | 79 | |
@@ -81,13 +81,13 @@ discard block |
||
81 | 81 | break; |
82 | 82 | } |
83 | 83 | |
84 | -for ( $i = 0; $i = 100; $i++ ) {} |
|
85 | -for ( $i = 0; $i = 100 && $b = false; $i++ ) {} |
|
84 | +for ($i = 0; $i = 100; $i++) {} |
|
85 | +for ($i = 0; $i = 100 && $b = false; $i++) {} |
|
86 | 86 | |
87 | 87 | do { |
88 | -} while ( $sample = false ); |
|
88 | +}while ($sample = false); |
|
89 | 89 | |
90 | -while ( $sample = false ) {} |
|
90 | +while ($sample = false) {} |
|
91 | 91 | |
92 | 92 | if ($a = 123) : |
93 | 93 | endif; |
@@ -1,25 +1,25 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | for ($i = 0; $i < 20; $i++) { |
4 | - for ($j = 0; $j < 5; $i += 2) { |
|
5 | - for ($k = 0; $k > 3; $i++) { |
|
4 | + for ($j = 0; $j < 5; $i += 2) { |
|
5 | + for ($k = 0; $k > 3; $i++) { |
|
6 | 6 | |
7 | - } |
|
8 | - } |
|
7 | + } |
|
8 | + } |
|
9 | 9 | } |
10 | 10 | |
11 | 11 | for ($i = 0; $i < 20; $i++) { |
12 | - for ($j = 0; $j < 5; $j += 2) { |
|
13 | - for ($k = 0; $k > 3; $k++) { |
|
12 | + for ($j = 0; $j < 5; $j += 2) { |
|
13 | + for ($k = 0; $k > 3; $k++) { |
|
14 | 14 | |
15 | - } |
|
16 | - } |
|
15 | + } |
|
16 | + } |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | for ($i = 0; $i < 20; $i++) { |
20 | - for ($j = 0; $j < 5; $j += 2) { |
|
21 | - for ($k = 0; $k > 3; $j++) { |
|
20 | + for ($j = 0; $j < 5; $j += 2) { |
|
21 | + for ($k = 0; $k > 3; $j++) { |
|
22 | 22 | |
23 | - } |
|
24 | - } |
|
23 | + } |
|
24 | + } |
|
25 | 25 | } |
26 | 26 | \ No newline at end of file |
@@ -15,38 +15,38 @@ |
||
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 | - |
|
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 | - 3 => 2, |
|
45 | - 4 => 1, |
|
46 | - 20 => 1, |
|
47 | - ]; |
|
48 | - |
|
49 | - }//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 | + |
|
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 | + 3 => 2, |
|
45 | + 4 => 1, |
|
46 | + 20 => 1, |
|
47 | + ]; |
|
48 | + |
|
49 | + }//end getWarningList() |
|
50 | 50 | |
51 | 51 | |
52 | 52 | }//end class |
@@ -15,38 +15,38 @@ |
||
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 | - |
|
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 | - 3 => 1, |
|
45 | - 5 => 1, |
|
46 | - 7 => 1, |
|
47 | - ]; |
|
48 | - |
|
49 | - }//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 | + |
|
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 | + 3 => 1, |
|
45 | + 5 => 1, |
|
46 | + 7 => 1, |
|
47 | + ]; |
|
48 | + |
|
49 | + }//end getWarningList() |
|
50 | 50 | |
51 | 51 | |
52 | 52 | }//end class |