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 156156 'no_empty_comment ' => true ,
157157 'no_empty_phpdoc ' => true ,
158158 '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+ ],
160177 'no_homoglyph_names ' => true ,
161178 'no_leading_import_slash ' => true ,
162179 'no_leading_namespace_whitespace ' => true ,
Original file line number Diff line number Diff line change 1010namespace PHPUnit \Framework \Constraint ;
1111
1212use function json_decode ;
13-
1413use function json_last_error ;
1514use function sprintf ;
1615use SebastianBergmann \RecursionContext \InvalidArgumentException ;
Original file line number Diff line number Diff line change @@ -983,7 +983,6 @@ public function testWithVariousIterableDataProvidersFromParent(): void
983983 ['P ' ],
984984 ['Q ' ],
985985 ['R ' ],
986-
987986 ], $ dataSets );
988987 }
989988
@@ -1001,7 +1000,6 @@ public function testWithVariousIterableDataProvidersInParent(): void
10011000 ['P ' ],
10021001 ['Q ' ],
10031002 ['R ' ],
1004-
10051003 ], $ dataSets );
10061004 }
10071005
@@ -1019,7 +1017,6 @@ public function testWithVariousIterableAbstractDataProviders(): void
10191017 ['Y ' ],
10201018 ['Z ' ],
10211019 ['P ' ],
1022-
10231020 ], $ dataSets );
10241021 }
10251022
@@ -1411,7 +1408,6 @@ public function getLinesToBeCoveredProvider(): array
14111408 [
14121409 TEST_FILES_PATH . 'CoveredClass.php ' => range (37 , 41 ),
14131410 ],
1414-
14151411 ],
14161412 [
14171413 CoveragePublicTest::class,
You can’t perform that action at this time.
0 commit comments