File tree Expand file tree Collapse file tree 3 files changed +18
-6
lines changed
src/Framework/Constraint/String Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 156
156
'no_empty_comment ' => true ,
157
157
'no_empty_phpdoc ' => true ,
158
158
'no_empty_statement ' => true ,
159
- 'no_extra_blank_lines ' => true ,
159
+ 'no_extra_blank_lines ' => [
160
+ 'tokens ' => [
161
+ 'attribute ' ,
162
+ 'break ' ,
163
+ 'case ' ,
164
+ 'continue ' ,
165
+ 'curly_brace_block ' ,
166
+ 'default ' ,
167
+ 'extra ' ,
168
+ 'parenthesis_brace_block ' ,
169
+ 'return ' ,
170
+ 'square_brace_block ' ,
171
+ 'switch ' ,
172
+ 'throw ' ,
173
+ 'use ' ,
174
+ 'use_trait ' ,
175
+ ],
176
+ ],
160
177
'no_homoglyph_names ' => true ,
161
178
'no_leading_import_slash ' => true ,
162
179
'no_leading_namespace_whitespace ' => true ,
Original file line number Diff line number Diff line change 10
10
namespace PHPUnit \Framework \Constraint ;
11
11
12
12
use function json_decode ;
13
-
14
13
use function json_last_error ;
15
14
use function sprintf ;
16
15
use SebastianBergmann \RecursionContext \InvalidArgumentException ;
Original file line number Diff line number Diff line change @@ -983,7 +983,6 @@ public function testWithVariousIterableDataProvidersFromParent(): void
983
983
['P ' ],
984
984
['Q ' ],
985
985
['R ' ],
986
-
987
986
], $ dataSets );
988
987
}
989
988
@@ -1001,7 +1000,6 @@ public function testWithVariousIterableDataProvidersInParent(): void
1001
1000
['P ' ],
1002
1001
['Q ' ],
1003
1002
['R ' ],
1004
-
1005
1003
], $ dataSets );
1006
1004
}
1007
1005
@@ -1019,7 +1017,6 @@ public function testWithVariousIterableAbstractDataProviders(): void
1019
1017
['Y ' ],
1020
1018
['Z ' ],
1021
1019
['P ' ],
1022
-
1023
1020
], $ dataSets );
1024
1021
}
1025
1022
@@ -1411,7 +1408,6 @@ public function getLinesToBeCoveredProvider(): array
1411
1408
[
1412
1409
TEST_FILES_PATH . 'CoveredClass.php ' => range (37 , 41 ),
1413
1410
],
1414
-
1415
1411
],
1416
1412
[
1417
1413
CoveragePublicTest::class,
You can’t perform that action at this time.
0 commit comments