Skip to content

Commit 7ce7f5f

Browse files
Merge branch '8.5' into 9.6
2 parents 857d986 + 978cb6b commit 7ce7f5f

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

.php-cs-fixer.dist.php

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,24 @@
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,

src/Framework/Constraint/String/IsJson.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
namespace PHPUnit\Framework\Constraint;
1111

1212
use function json_decode;
13-
1413
use function json_last_error;
1514
use function sprintf;
1615
use SebastianBergmann\RecursionContext\InvalidArgumentException;

tests/unit/Util/TestClassTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)