@@ -16,6 +16,6 @@ |
||
16 | 16 | $code = '<'.'?php '; |
17 | 17 | |
18 | 18 | $string = 'This is a really long string. ' |
19 | - . 'It is being used for errors. ' |
|
20 | - . 'The message is not translated.'; |
|
19 | + . 'It is being used for errors. ' |
|
20 | + . 'The message is not translated.'; |
|
21 | 21 | ?> |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | $x = 'My '.'string'; |
3 | -$x = 'My '. 1234; |
|
3 | +$x = 'My '.1234; |
|
4 | 4 | $x = 'My '.$y.' test'; |
5 | 5 | |
6 | 6 | echo $data['my'.'index']; |
7 | -echo $data['my'. 4]; |
|
7 | +echo $data['my'.4]; |
|
8 | 8 | echo $data['my'.$x]; |
9 | 9 | echo $data[$x.$y.'My'.'String']; |
10 | 10 |
@@ -15,59 +15,59 @@ |
||
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 | - * @param string $testFile The name of the file being tested. |
|
25 | - * |
|
26 | - * @return array<int, int> |
|
27 | - */ |
|
28 | - public function getErrorList($testFile='UnnecessaryStringConcatUnitTest.inc') |
|
29 | - { |
|
30 | - switch ($testFile) { |
|
31 | - case 'UnnecessaryStringConcatUnitTest.inc': |
|
32 | - return [ |
|
33 | - 2 => 1, |
|
34 | - 6 => 1, |
|
35 | - 9 => 1, |
|
36 | - 12 => 1, |
|
37 | - 19 => 1, |
|
38 | - 20 => 1, |
|
39 | - ]; |
|
40 | - break; |
|
41 | - case 'UnnecessaryStringConcatUnitTest.js': |
|
42 | - return [ |
|
43 | - 1 => 1, |
|
44 | - 8 => 1, |
|
45 | - 11 => 1, |
|
46 | - 14 => 1, |
|
47 | - 15 => 1, |
|
48 | - ]; |
|
49 | - break; |
|
50 | - default: |
|
51 | - return []; |
|
52 | - break; |
|
53 | - }//end switch |
|
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 | + * @param string $testFile The name of the file being tested. |
|
25 | + * |
|
26 | + * @return array<int, int> |
|
27 | + */ |
|
28 | + public function getErrorList($testFile='UnnecessaryStringConcatUnitTest.inc') |
|
29 | + { |
|
30 | + switch ($testFile) { |
|
31 | + case 'UnnecessaryStringConcatUnitTest.inc': |
|
32 | + return [ |
|
33 | + 2 => 1, |
|
34 | + 6 => 1, |
|
35 | + 9 => 1, |
|
36 | + 12 => 1, |
|
37 | + 19 => 1, |
|
38 | + 20 => 1, |
|
39 | + ]; |
|
40 | + break; |
|
41 | + case 'UnnecessaryStringConcatUnitTest.js': |
|
42 | + return [ |
|
43 | + 1 => 1, |
|
44 | + 8 => 1, |
|
45 | + 11 => 1, |
|
46 | + 14 => 1, |
|
47 | + 15 => 1, |
|
48 | + ]; |
|
49 | + break; |
|
50 | + default: |
|
51 | + return []; |
|
52 | + break; |
|
53 | + }//end switch |
|
54 | 54 | |
55 | - }//end getErrorList() |
|
55 | + }//end getErrorList() |
|
56 | 56 | |
57 | 57 | |
58 | - /** |
|
59 | - * Returns the lines where warnings should occur. |
|
60 | - * |
|
61 | - * The key of the array should represent the line number and the value |
|
62 | - * should represent the number of warnings that should occur on that line. |
|
63 | - * |
|
64 | - * @return array<int, int> |
|
65 | - */ |
|
66 | - public function getWarningList() |
|
67 | - { |
|
68 | - return []; |
|
58 | + /** |
|
59 | + * Returns the lines where warnings should occur. |
|
60 | + * |
|
61 | + * The key of the array should represent the line number and the value |
|
62 | + * should represent the number of warnings that should occur on that line. |
|
63 | + * |
|
64 | + * @return array<int, int> |
|
65 | + */ |
|
66 | + public function getWarningList() |
|
67 | + { |
|
68 | + return []; |
|
69 | 69 | |
70 | - }//end getWarningList() |
|
70 | + }//end getWarningList() |
|
71 | 71 | |
72 | 72 | |
73 | 73 | }//end class |
@@ -28,28 +28,28 @@ |
||
28 | 28 | public function getErrorList($testFile='UnnecessaryStringConcatUnitTest.inc') |
29 | 29 | { |
30 | 30 | switch ($testFile) { |
31 | - case 'UnnecessaryStringConcatUnitTest.inc': |
|
32 | - return [ |
|
33 | - 2 => 1, |
|
34 | - 6 => 1, |
|
35 | - 9 => 1, |
|
36 | - 12 => 1, |
|
37 | - 19 => 1, |
|
38 | - 20 => 1, |
|
39 | - ]; |
|
40 | - break; |
|
41 | - case 'UnnecessaryStringConcatUnitTest.js': |
|
42 | - return [ |
|
43 | - 1 => 1, |
|
44 | - 8 => 1, |
|
45 | - 11 => 1, |
|
46 | - 14 => 1, |
|
47 | - 15 => 1, |
|
48 | - ]; |
|
49 | - break; |
|
50 | - default: |
|
51 | - return []; |
|
52 | - break; |
|
31 | + case 'UnnecessaryStringConcatUnitTest.inc': |
|
32 | + return [ |
|
33 | + 2 => 1, |
|
34 | + 6 => 1, |
|
35 | + 9 => 1, |
|
36 | + 12 => 1, |
|
37 | + 19 => 1, |
|
38 | + 20 => 1, |
|
39 | + ]; |
|
40 | + break; |
|
41 | + case 'UnnecessaryStringConcatUnitTest.js': |
|
42 | + return [ |
|
43 | + 1 => 1, |
|
44 | + 8 => 1, |
|
45 | + 11 => 1, |
|
46 | + 14 => 1, |
|
47 | + 15 => 1, |
|
48 | + ]; |
|
49 | + break; |
|
50 | + default: |
|
51 | + return []; |
|
52 | + break; |
|
53 | 53 | }//end switch |
54 | 54 | |
55 | 55 | }//end getErrorList() |
@@ -25,7 +25,7 @@ |
||
25 | 25 | * |
26 | 26 | * @return array<int, int> |
27 | 27 | */ |
28 | - public function getErrorList($testFile='UnnecessaryStringConcatUnitTest.inc') |
|
28 | + public function getErrorList($testFile = 'UnnecessaryStringConcatUnitTest.inc') |
|
29 | 29 | { |
30 | 30 | switch ($testFile) { |
31 | 31 | case 'UnnecessaryStringConcatUnitTest.inc': |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | * |
41 | 41 | * @return array<int, int> |
42 | 42 | */ |
43 | - public function getErrorList($testFile='') |
|
43 | + public function getErrorList($testFile = '') |
|
44 | 44 | { |
45 | 45 | switch ($testFile) { |
46 | 46 | case 'LineLengthUnitTest.1.inc': |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | * |
74 | 74 | * @return array<int, int> |
75 | 75 | */ |
76 | - public function getWarningList($testFile='') |
|
76 | + public function getWarningList($testFile = '') |
|
77 | 77 | { |
78 | 78 | switch ($testFile) { |
79 | 79 | case 'LineLengthUnitTest.1.inc': |
@@ -15,97 +15,97 @@ |
||
15 | 15 | { |
16 | 16 | |
17 | 17 | |
18 | - /** |
|
19 | - * Get a list of CLI values to set before the file is tested. |
|
20 | - * |
|
21 | - * @param string $testFile The name of the file being tested. |
|
22 | - * @param \PHP_CodeSniffer\Config $config The config data for the test run. |
|
23 | - * |
|
24 | - * @return void |
|
25 | - */ |
|
26 | - public function setCliValues($testFile, $config) |
|
27 | - { |
|
28 | - $config->tabWidth = 4; |
|
18 | + /** |
|
19 | + * Get a list of CLI values to set before the file is tested. |
|
20 | + * |
|
21 | + * @param string $testFile The name of the file being tested. |
|
22 | + * @param \PHP_CodeSniffer\Config $config The config data for the test run. |
|
23 | + * |
|
24 | + * @return void |
|
25 | + */ |
|
26 | + public function setCliValues($testFile, $config) |
|
27 | + { |
|
28 | + $config->tabWidth = 4; |
|
29 | 29 | |
30 | - }//end setCliValues() |
|
30 | + }//end setCliValues() |
|
31 | 31 | |
32 | 32 | |
33 | - /** |
|
34 | - * Returns the lines where errors should occur. |
|
35 | - * |
|
36 | - * The key of the array should represent the line number and the value |
|
37 | - * should represent the number of errors that should occur on that line. |
|
38 | - * |
|
39 | - * @param string $testFile The name of the file being tested. |
|
40 | - * |
|
41 | - * @return array<int, int> |
|
42 | - */ |
|
43 | - public function getErrorList($testFile='') |
|
44 | - { |
|
45 | - switch ($testFile) { |
|
46 | - case 'LineLengthUnitTest.1.inc': |
|
47 | - return [ |
|
48 | - 31 => 1, |
|
49 | - 34 => 1, |
|
50 | - 45 => 1, |
|
51 | - 82 => 1, |
|
52 | - ]; |
|
53 | - break; |
|
54 | - case 'LineLengthUnitTest.2.inc': |
|
55 | - case 'LineLengthUnitTest.3.inc': |
|
56 | - return [7 => 1]; |
|
57 | - break; |
|
58 | - default: |
|
59 | - return []; |
|
60 | - break; |
|
61 | - }//end switch |
|
33 | + /** |
|
34 | + * Returns the lines where errors should occur. |
|
35 | + * |
|
36 | + * The key of the array should represent the line number and the value |
|
37 | + * should represent the number of errors that should occur on that line. |
|
38 | + * |
|
39 | + * @param string $testFile The name of the file being tested. |
|
40 | + * |
|
41 | + * @return array<int, int> |
|
42 | + */ |
|
43 | + public function getErrorList($testFile='') |
|
44 | + { |
|
45 | + switch ($testFile) { |
|
46 | + case 'LineLengthUnitTest.1.inc': |
|
47 | + return [ |
|
48 | + 31 => 1, |
|
49 | + 34 => 1, |
|
50 | + 45 => 1, |
|
51 | + 82 => 1, |
|
52 | + ]; |
|
53 | + break; |
|
54 | + case 'LineLengthUnitTest.2.inc': |
|
55 | + case 'LineLengthUnitTest.3.inc': |
|
56 | + return [7 => 1]; |
|
57 | + break; |
|
58 | + default: |
|
59 | + return []; |
|
60 | + break; |
|
61 | + }//end switch |
|
62 | 62 | |
63 | - }//end getErrorList() |
|
63 | + }//end getErrorList() |
|
64 | 64 | |
65 | 65 | |
66 | - /** |
|
67 | - * Returns the lines where warnings should occur. |
|
68 | - * |
|
69 | - * The key of the array should represent the line number and the value |
|
70 | - * should represent the number of warnings that should occur on that line. |
|
71 | - * |
|
72 | - * @param string $testFile The name of the file being tested. |
|
73 | - * |
|
74 | - * @return array<int, int> |
|
75 | - */ |
|
76 | - public function getWarningList($testFile='') |
|
77 | - { |
|
78 | - switch ($testFile) { |
|
79 | - case 'LineLengthUnitTest.1.inc': |
|
80 | - return [ |
|
81 | - 9 => 1, |
|
82 | - 15 => 1, |
|
83 | - 21 => 1, |
|
84 | - 24 => 1, |
|
85 | - 29 => 1, |
|
86 | - 37 => 1, |
|
87 | - 63 => 1, |
|
88 | - 73 => 1, |
|
89 | - 75 => 1, |
|
90 | - 84 => 1, |
|
91 | - ]; |
|
92 | - break; |
|
93 | - case 'LineLengthUnitTest.2.inc': |
|
94 | - case 'LineLengthUnitTest.3.inc': |
|
95 | - return [6 => 1]; |
|
96 | - break; |
|
97 | - case 'LineLengthUnitTest.4.inc': |
|
98 | - return [ |
|
99 | - 10 => 1, |
|
100 | - 14 => 1, |
|
101 | - ]; |
|
102 | - break; |
|
103 | - default: |
|
104 | - return []; |
|
105 | - break; |
|
106 | - }//end switch |
|
66 | + /** |
|
67 | + * Returns the lines where warnings should occur. |
|
68 | + * |
|
69 | + * The key of the array should represent the line number and the value |
|
70 | + * should represent the number of warnings that should occur on that line. |
|
71 | + * |
|
72 | + * @param string $testFile The name of the file being tested. |
|
73 | + * |
|
74 | + * @return array<int, int> |
|
75 | + */ |
|
76 | + public function getWarningList($testFile='') |
|
77 | + { |
|
78 | + switch ($testFile) { |
|
79 | + case 'LineLengthUnitTest.1.inc': |
|
80 | + return [ |
|
81 | + 9 => 1, |
|
82 | + 15 => 1, |
|
83 | + 21 => 1, |
|
84 | + 24 => 1, |
|
85 | + 29 => 1, |
|
86 | + 37 => 1, |
|
87 | + 63 => 1, |
|
88 | + 73 => 1, |
|
89 | + 75 => 1, |
|
90 | + 84 => 1, |
|
91 | + ]; |
|
92 | + break; |
|
93 | + case 'LineLengthUnitTest.2.inc': |
|
94 | + case 'LineLengthUnitTest.3.inc': |
|
95 | + return [6 => 1]; |
|
96 | + break; |
|
97 | + case 'LineLengthUnitTest.4.inc': |
|
98 | + return [ |
|
99 | + 10 => 1, |
|
100 | + 14 => 1, |
|
101 | + ]; |
|
102 | + break; |
|
103 | + default: |
|
104 | + return []; |
|
105 | + break; |
|
106 | + }//end switch |
|
107 | 107 | |
108 | - }//end getWarningList() |
|
108 | + }//end getWarningList() |
|
109 | 109 | |
110 | 110 | |
111 | 111 | }//end class |
@@ -43,21 +43,21 @@ discard block |
||
43 | 43 | public function getErrorList($testFile='') |
44 | 44 | { |
45 | 45 | switch ($testFile) { |
46 | - case 'LineLengthUnitTest.1.inc': |
|
47 | - return [ |
|
48 | - 31 => 1, |
|
49 | - 34 => 1, |
|
50 | - 45 => 1, |
|
51 | - 82 => 1, |
|
52 | - ]; |
|
53 | - break; |
|
54 | - case 'LineLengthUnitTest.2.inc': |
|
55 | - case 'LineLengthUnitTest.3.inc': |
|
56 | - return [7 => 1]; |
|
57 | - break; |
|
58 | - default: |
|
59 | - return []; |
|
60 | - break; |
|
46 | + case 'LineLengthUnitTest.1.inc': |
|
47 | + return [ |
|
48 | + 31 => 1, |
|
49 | + 34 => 1, |
|
50 | + 45 => 1, |
|
51 | + 82 => 1, |
|
52 | + ]; |
|
53 | + break; |
|
54 | + case 'LineLengthUnitTest.2.inc': |
|
55 | + case 'LineLengthUnitTest.3.inc': |
|
56 | + return [7 => 1]; |
|
57 | + break; |
|
58 | + default: |
|
59 | + return []; |
|
60 | + break; |
|
61 | 61 | }//end switch |
62 | 62 | |
63 | 63 | }//end getErrorList() |
@@ -76,33 +76,33 @@ discard block |
||
76 | 76 | public function getWarningList($testFile='') |
77 | 77 | { |
78 | 78 | switch ($testFile) { |
79 | - case 'LineLengthUnitTest.1.inc': |
|
80 | - return [ |
|
81 | - 9 => 1, |
|
82 | - 15 => 1, |
|
83 | - 21 => 1, |
|
84 | - 24 => 1, |
|
85 | - 29 => 1, |
|
86 | - 37 => 1, |
|
87 | - 63 => 1, |
|
88 | - 73 => 1, |
|
89 | - 75 => 1, |
|
90 | - 84 => 1, |
|
91 | - ]; |
|
92 | - break; |
|
93 | - case 'LineLengthUnitTest.2.inc': |
|
94 | - case 'LineLengthUnitTest.3.inc': |
|
95 | - return [6 => 1]; |
|
96 | - break; |
|
97 | - case 'LineLengthUnitTest.4.inc': |
|
98 | - return [ |
|
99 | - 10 => 1, |
|
100 | - 14 => 1, |
|
101 | - ]; |
|
102 | - break; |
|
103 | - default: |
|
104 | - return []; |
|
105 | - break; |
|
79 | + case 'LineLengthUnitTest.1.inc': |
|
80 | + return [ |
|
81 | + 9 => 1, |
|
82 | + 15 => 1, |
|
83 | + 21 => 1, |
|
84 | + 24 => 1, |
|
85 | + 29 => 1, |
|
86 | + 37 => 1, |
|
87 | + 63 => 1, |
|
88 | + 73 => 1, |
|
89 | + 75 => 1, |
|
90 | + 84 => 1, |
|
91 | + ]; |
|
92 | + break; |
|
93 | + case 'LineLengthUnitTest.2.inc': |
|
94 | + case 'LineLengthUnitTest.3.inc': |
|
95 | + return [6 => 1]; |
|
96 | + break; |
|
97 | + case 'LineLengthUnitTest.4.inc': |
|
98 | + return [ |
|
99 | + 10 => 1, |
|
100 | + 14 => 1, |
|
101 | + ]; |
|
102 | + break; |
|
103 | + default: |
|
104 | + return []; |
|
105 | + break; |
|
106 | 106 | }//end switch |
107 | 107 | |
108 | 108 | }//end getWarningList() |
@@ -15,49 +15,49 @@ |
||
15 | 15 | { |
16 | 16 | |
17 | 17 | |
18 | - /** |
|
19 | - * Get a list of CLI values to set before the file is tested. |
|
20 | - * |
|
21 | - * @param string $testFile The name of the file being tested. |
|
22 | - * @param \PHP_CodeSniffer\Config $config The config data for the test run. |
|
23 | - * |
|
24 | - * @return void |
|
25 | - */ |
|
26 | - public function setCliValues($testFile, $config) |
|
27 | - { |
|
28 | - $config->tabWidth = 4; |
|
29 | - |
|
30 | - }//end setCliValues() |
|
31 | - |
|
32 | - |
|
33 | - /** |
|
34 | - * Returns the lines where errors should occur. |
|
35 | - * |
|
36 | - * The key of the array should represent the line number and the value |
|
37 | - * should represent the number of errors that should occur on that line. |
|
38 | - * |
|
39 | - * @return array<int, int> |
|
40 | - */ |
|
41 | - public function getErrorList() |
|
42 | - { |
|
43 | - return [1 => 1]; |
|
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 | + * Get a list of CLI values to set before the file is tested. |
|
20 | + * |
|
21 | + * @param string $testFile The name of the file being tested. |
|
22 | + * @param \PHP_CodeSniffer\Config $config The config data for the test run. |
|
23 | + * |
|
24 | + * @return void |
|
25 | + */ |
|
26 | + public function setCliValues($testFile, $config) |
|
27 | + { |
|
28 | + $config->tabWidth = 4; |
|
29 | + |
|
30 | + }//end setCliValues() |
|
31 | + |
|
32 | + |
|
33 | + /** |
|
34 | + * Returns the lines where errors should occur. |
|
35 | + * |
|
36 | + * The key of the array should represent the line number and the value |
|
37 | + * should represent the number of errors that should occur on that line. |
|
38 | + * |
|
39 | + * @return array<int, int> |
|
40 | + */ |
|
41 | + public function getErrorList() |
|
42 | + { |
|
43 | + return [1 => 1]; |
|
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 |
@@ -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 | - 6 => 1, |
|
30 | - 10 => 1, |
|
31 | - ]; |
|
32 | - |
|
33 | - }//end getErrorList() |
|
34 | - |
|
35 | - |
|
36 | - /** |
|
37 | - * Returns the lines where warnings should occur. |
|
38 | - * |
|
39 | - * The key of the array should represent the line number and the value |
|
40 | - * should represent the number of warnings that should occur on that line. |
|
41 | - * |
|
42 | - * @return array<int, int> |
|
43 | - */ |
|
44 | - public function getWarningList() |
|
45 | - { |
|
46 | - return []; |
|
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 | + 6 => 1, |
|
30 | + 10 => 1, |
|
31 | + ]; |
|
32 | + |
|
33 | + }//end getErrorList() |
|
34 | + |
|
35 | + |
|
36 | + /** |
|
37 | + * Returns the lines where warnings should occur. |
|
38 | + * |
|
39 | + * The key of the array should represent the line number and the value |
|
40 | + * should represent the number of warnings that should occur on that line. |
|
41 | + * |
|
42 | + * @return array<int, int> |
|
43 | + */ |
|
44 | + public function getWarningList() |
|
45 | + { |
|
46 | + return []; |
|
47 | + |
|
48 | + }//end getWarningList() |
|
49 | 49 | |
50 | 50 | |
51 | 51 | }//end class |
@@ -2,18 +2,18 @@ discard block |
||
2 | 2 | |
3 | 3 | // This line is okay... just! |
4 | 4 | if (($reallyLongVarName === true) || (is_array($anotherLongVarName) == false)) { |
5 | - // Do something. |
|
5 | + // Do something. |
|
6 | 6 | } |
7 | 7 | |
8 | 8 | // This line is not okay... just! |
9 | 9 | if (($reallyLongVarName === true) || (is_array($anotherLongVarName) === false)) { |
10 | - // Do something. |
|
10 | + // Do something. |
|
11 | 11 | } |
12 | 12 | |
13 | 13 | |
14 | 14 | // This line is is too long. |
15 | 15 | if (($anotherReallyLongVarName === true) || (is_array($anotherReallyLongVarName) === false)) { |
16 | - // Do something. |
|
16 | + // Do something. |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | // This is a really really long comment that is going to go to exactly 80 chars. |
@@ -57,14 +57,14 @@ discard block |
||
57 | 57 | # http://en.wikipedia.org/wiki/Binomial_proportion_confidence_interval#Wilson_score_interval |
58 | 58 | |
59 | 59 | if ($foo) { |
60 | - if ($bar) { |
|
61 | - if ($baz) { |
|
62 | - // Next line can be broken: |
|
63 | - // foo bar baz http://en.wikipedia.org/wiki/Binomial_proportion#blahblahblahblah |
|
64 | - // But this one is just too long to break with this indent: |
|
65 | - // foo bar baz http://en.wikipedia.org/wiki/Binomial_proportion#blahblahblahblahblah |
|
66 | - } |
|
67 | - } |
|
60 | + if ($bar) { |
|
61 | + if ($baz) { |
|
62 | + // Next line can be broken: |
|
63 | + // foo bar baz http://en.wikipedia.org/wiki/Binomial_proportion#blahblahblahblah |
|
64 | + // But this one is just too long to break with this indent: |
|
65 | + // foo bar baz http://en.wikipedia.org/wiki/Binomial_proportion#blahblahblahblahblah |
|
66 | + } |
|
67 | + } |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /* -------------------------------- 80 chars -------------------------------- */ |
@@ -68,12 +68,12 @@ |
||
68 | 68 | } |
69 | 69 | |
70 | 70 | /* -------------------------------- 80 chars -------------------------------- */ |
71 | -$ab = function () { /* comment */ if ($foo === true) { return (int) $foo; } }; |
|
72 | -$ab = function () { /* comment */ if ($foo === true){ return (int)$foo; }}; |
|
73 | -$ab = function () { /* comment */ if ($foo === true) { return (int) $foo; } }; |
|
74 | - $ab = function () { /* comment */ if ($foo === true) { return(int) $foo; }}; |
|
75 | - $ab = function () { /* comment */ if ($foo === true) { return(int) $foo; }}; |
|
76 | -$ab = $ab = $ab = $ab = $ab = $ab = $ab = $ab = $ab = $ab; |
|
71 | +$ab = function() { /* comment */ if ($foo === true) { return (int) $foo; } }; |
|
72 | +$ab = function() { /* comment */ if ($foo === true) { return (int) $foo; }}; |
|
73 | +$ab = function() { /* comment */ if ($foo === true) { return (int) $foo; } }; |
|
74 | + $ab = function() { /* comment */ if ($foo === true) { return(int) $foo; }}; |
|
75 | + $ab = function() { /* comment */ if ($foo === true) { return(int) $foo; }}; |
|
76 | +$ab = $ab = $ab = $ab = $ab = $ab = $ab = $ab = $ab = $ab; |
|
77 | 77 | |
78 | 78 | // PHPCS annotations on a line by themselves should be ignored for the metrics. |
79 | 79 | // phpcs:enable Standard.Category.Sniff.ErrorCode1,Standard.Category.Sniff.ErrorCode2 -- for reasons ... |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * |
26 | 26 | * @return array<int, int> |
27 | 27 | */ |
28 | - public function getErrorList($testFile='') |
|
28 | + public function getErrorList($testFile = '') |
|
29 | 29 | { |
30 | 30 | switch ($testFile) { |
31 | 31 | case 'EndFileNewlineUnitTest.3.inc': |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * |
56 | 56 | * @return array<int, int> |
57 | 57 | */ |
58 | - public function getWarningList($testFile='') |
|
58 | + public function getWarningList($testFile = '') |
|
59 | 59 | { |
60 | 60 | return []; |
61 | 61 |
@@ -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 | - * @param string $testFile The name of the file being tested. |
|
25 | - * |
|
26 | - * @return array<int, int> |
|
27 | - */ |
|
28 | - public function getErrorList($testFile='') |
|
29 | - { |
|
30 | - switch ($testFile) { |
|
31 | - case 'EndFileNewlineUnitTest.3.inc': |
|
32 | - case 'EndFileNewlineUnitTest.3.js': |
|
33 | - case 'EndFileNewlineUnitTest.3.css': |
|
34 | - case 'EndFileNewlineUnitTest.4.inc': |
|
35 | - return [2 => 1]; |
|
36 | - case 'EndFileNewlineUnitTest.6.inc': |
|
37 | - case 'EndFileNewlineUnitTest.7.inc': |
|
38 | - return [1 => 1]; |
|
39 | - default: |
|
40 | - return []; |
|
41 | - }//end switch |
|
42 | - |
|
43 | - }//end getErrorList() |
|
44 | - |
|
45 | - |
|
46 | - /** |
|
47 | - * Returns the lines where warnings should occur. |
|
48 | - * |
|
49 | - * The key of the array should represent the line number and the value |
|
50 | - * should represent the number of warnings that should occur on that line. |
|
51 | - * |
|
52 | - * @param string $testFile The name of the file being tested. |
|
53 | - * |
|
54 | - * @return array<int, int> |
|
55 | - */ |
|
56 | - public function getWarningList($testFile='') |
|
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 | + * @param string $testFile The name of the file being tested. |
|
25 | + * |
|
26 | + * @return array<int, int> |
|
27 | + */ |
|
28 | + public function getErrorList($testFile='') |
|
29 | + { |
|
30 | + switch ($testFile) { |
|
31 | + case 'EndFileNewlineUnitTest.3.inc': |
|
32 | + case 'EndFileNewlineUnitTest.3.js': |
|
33 | + case 'EndFileNewlineUnitTest.3.css': |
|
34 | + case 'EndFileNewlineUnitTest.4.inc': |
|
35 | + return [2 => 1]; |
|
36 | + case 'EndFileNewlineUnitTest.6.inc': |
|
37 | + case 'EndFileNewlineUnitTest.7.inc': |
|
38 | + return [1 => 1]; |
|
39 | + default: |
|
40 | + return []; |
|
41 | + }//end switch |
|
42 | + |
|
43 | + }//end getErrorList() |
|
44 | + |
|
45 | + |
|
46 | + /** |
|
47 | + * Returns the lines where warnings should occur. |
|
48 | + * |
|
49 | + * The key of the array should represent the line number and the value |
|
50 | + * should represent the number of warnings that should occur on that line. |
|
51 | + * |
|
52 | + * @param string $testFile The name of the file being tested. |
|
53 | + * |
|
54 | + * @return array<int, int> |
|
55 | + */ |
|
56 | + public function getWarningList($testFile='') |
|
57 | + { |
|
58 | + return []; |
|
59 | + |
|
60 | + }//end getWarningList() |
|
61 | 61 | |
62 | 62 | |
63 | 63 | }//end class |
@@ -28,16 +28,16 @@ |
||
28 | 28 | public function getErrorList($testFile='') |
29 | 29 | { |
30 | 30 | switch ($testFile) { |
31 | - case 'EndFileNewlineUnitTest.3.inc': |
|
32 | - case 'EndFileNewlineUnitTest.3.js': |
|
33 | - case 'EndFileNewlineUnitTest.3.css': |
|
34 | - case 'EndFileNewlineUnitTest.4.inc': |
|
35 | - return [2 => 1]; |
|
36 | - case 'EndFileNewlineUnitTest.6.inc': |
|
37 | - case 'EndFileNewlineUnitTest.7.inc': |
|
38 | - return [1 => 1]; |
|
39 | - default: |
|
40 | - return []; |
|
31 | + case 'EndFileNewlineUnitTest.3.inc': |
|
32 | + case 'EndFileNewlineUnitTest.3.js': |
|
33 | + case 'EndFileNewlineUnitTest.3.css': |
|
34 | + case 'EndFileNewlineUnitTest.4.inc': |
|
35 | + return [2 => 1]; |
|
36 | + case 'EndFileNewlineUnitTest.6.inc': |
|
37 | + case 'EndFileNewlineUnitTest.7.inc': |
|
38 | + return [1 => 1]; |
|
39 | + default: |
|
40 | + return []; |
|
41 | 41 | }//end switch |
42 | 42 | |
43 | 43 | }//end getErrorList() |
@@ -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 [1 => 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 [1 => 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 | * @return array<int, int> |
27 | 27 | */ |
28 | - public function getErrorList($testFile='') |
|
28 | + public function getErrorList($testFile = '') |
|
29 | 29 | { |
30 | 30 | switch ($testFile) { |
31 | 31 | case 'EndFileNoNewlineUnitTest.1.inc': |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | * |
66 | 66 | * @return array<int, int> |
67 | 67 | */ |
68 | - public function getWarningList($testFile='') |
|
68 | + public function getWarningList($testFile = '') |
|
69 | 69 | { |
70 | 70 | return []; |
71 | 71 |
@@ -15,53 +15,53 @@ |
||
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 | - * @param string $testFile The name of the file being tested. |
|
25 | - * |
|
26 | - * @return array<int, int> |
|
27 | - */ |
|
28 | - public function getErrorList($testFile='') |
|
29 | - { |
|
30 | - switch ($testFile) { |
|
31 | - case 'EndFileNoNewlineUnitTest.1.inc': |
|
32 | - case 'EndFileNoNewlineUnitTest.1.css': |
|
33 | - case 'EndFileNoNewlineUnitTest.1.js': |
|
34 | - case 'EndFileNoNewlineUnitTest.2.inc': |
|
35 | - return [3 => 1]; |
|
36 | - case 'EndFileNoNewlineUnitTest.2.css': |
|
37 | - case 'EndFileNoNewlineUnitTest.2.js': |
|
38 | - case 'EndFileNoNewlineUnitTest.6.inc': |
|
39 | - return [2 => 1]; |
|
40 | - case 'EndFileNoNewlineUnitTest.8.inc': |
|
41 | - case 'EndFileNoNewlineUnitTest.9.inc': |
|
42 | - return [1 => 1]; |
|
43 | - default: |
|
44 | - return []; |
|
45 | - }//end switch |
|
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 | + * @param string $testFile The name of the file being tested. |
|
25 | + * |
|
26 | + * @return array<int, int> |
|
27 | + */ |
|
28 | + public function getErrorList($testFile='') |
|
29 | + { |
|
30 | + switch ($testFile) { |
|
31 | + case 'EndFileNoNewlineUnitTest.1.inc': |
|
32 | + case 'EndFileNoNewlineUnitTest.1.css': |
|
33 | + case 'EndFileNoNewlineUnitTest.1.js': |
|
34 | + case 'EndFileNoNewlineUnitTest.2.inc': |
|
35 | + return [3 => 1]; |
|
36 | + case 'EndFileNoNewlineUnitTest.2.css': |
|
37 | + case 'EndFileNoNewlineUnitTest.2.js': |
|
38 | + case 'EndFileNoNewlineUnitTest.6.inc': |
|
39 | + return [2 => 1]; |
|
40 | + case 'EndFileNoNewlineUnitTest.8.inc': |
|
41 | + case 'EndFileNoNewlineUnitTest.9.inc': |
|
42 | + return [1 => 1]; |
|
43 | + default: |
|
44 | + return []; |
|
45 | + }//end switch |
|
46 | 46 | |
47 | - }//end getErrorList() |
|
47 | + }//end getErrorList() |
|
48 | 48 | |
49 | 49 | |
50 | - /** |
|
51 | - * Returns the lines where warnings should occur. |
|
52 | - * |
|
53 | - * The key of the array should represent the line number and the value |
|
54 | - * should represent the number of warnings that should occur on that line. |
|
55 | - * |
|
56 | - * @param string $testFile The name of the file being tested. |
|
57 | - * |
|
58 | - * @return array<int, int> |
|
59 | - */ |
|
60 | - public function getWarningList($testFile='') |
|
61 | - { |
|
62 | - return []; |
|
50 | + /** |
|
51 | + * Returns the lines where warnings should occur. |
|
52 | + * |
|
53 | + * The key of the array should represent the line number and the value |
|
54 | + * should represent the number of warnings that should occur on that line. |
|
55 | + * |
|
56 | + * @param string $testFile The name of the file being tested. |
|
57 | + * |
|
58 | + * @return array<int, int> |
|
59 | + */ |
|
60 | + public function getWarningList($testFile='') |
|
61 | + { |
|
62 | + return []; |
|
63 | 63 | |
64 | - }//end getWarningList() |
|
64 | + }//end getWarningList() |
|
65 | 65 | |
66 | 66 | |
67 | 67 | }//end class |
@@ -28,20 +28,20 @@ |
||
28 | 28 | public function getErrorList($testFile='') |
29 | 29 | { |
30 | 30 | switch ($testFile) { |
31 | - case 'EndFileNoNewlineUnitTest.1.inc': |
|
32 | - case 'EndFileNoNewlineUnitTest.1.css': |
|
33 | - case 'EndFileNoNewlineUnitTest.1.js': |
|
34 | - case 'EndFileNoNewlineUnitTest.2.inc': |
|
35 | - return [3 => 1]; |
|
36 | - case 'EndFileNoNewlineUnitTest.2.css': |
|
37 | - case 'EndFileNoNewlineUnitTest.2.js': |
|
38 | - case 'EndFileNoNewlineUnitTest.6.inc': |
|
39 | - return [2 => 1]; |
|
40 | - case 'EndFileNoNewlineUnitTest.8.inc': |
|
41 | - case 'EndFileNoNewlineUnitTest.9.inc': |
|
42 | - return [1 => 1]; |
|
43 | - default: |
|
44 | - return []; |
|
31 | + case 'EndFileNoNewlineUnitTest.1.inc': |
|
32 | + case 'EndFileNoNewlineUnitTest.1.css': |
|
33 | + case 'EndFileNoNewlineUnitTest.1.js': |
|
34 | + case 'EndFileNoNewlineUnitTest.2.inc': |
|
35 | + return [3 => 1]; |
|
36 | + case 'EndFileNoNewlineUnitTest.2.css': |
|
37 | + case 'EndFileNoNewlineUnitTest.2.js': |
|
38 | + case 'EndFileNoNewlineUnitTest.6.inc': |
|
39 | + return [2 => 1]; |
|
40 | + case 'EndFileNoNewlineUnitTest.8.inc': |
|
41 | + case 'EndFileNoNewlineUnitTest.9.inc': |
|
42 | + return [1 => 1]; |
|
43 | + default: |
|
44 | + return []; |
|
45 | 45 | }//end switch |
46 | 46 | |
47 | 47 | }//end getErrorList() |