Skip to content

Commit 10ae254

Browse files
Merge branch '10.5' into 11.4
2 parents 0e526b9 + 627c915 commit 10ae254

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

.php-cs-fixer.dist.php

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,24 @@
166166
'no_empty_comment' => true,
167167
'no_empty_phpdoc' => true,
168168
'no_empty_statement' => true,
169-
'no_extra_blank_lines' => true,
169+
'no_extra_blank_lines' => [
170+
'tokens' => [
171+
'attribute',
172+
'break',
173+
'case',
174+
'continue',
175+
'curly_brace_block',
176+
'default',
177+
'extra',
178+
'parenthesis_brace_block',
179+
'return',
180+
'square_brace_block',
181+
'switch',
182+
'throw',
183+
'use',
184+
'use_trait',
185+
],
186+
],
170187
'no_homoglyph_names' => true,
171188
'no_leading_import_slash' => true,
172189
'no_leading_namespace_whitespace' => true,

src/Util/PHP/DefaultJobRunner.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ private function runProcess(Job $job, ?string $temporaryFile): Result
9595
}
9696

9797
unset($key, $value);
98-
9998
}
10099

101100
$pipeSpec = [

tests/_files/mock-object/MethodWIthVariadicVariables.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ class MethodWIthVariadicVariables
1313
{
1414
public function testVariadic(string $foo, mixed ...$arguments): array
1515
{
16-
1716
return [$foo, ...$arguments];
1817
}
1918
}

tests/unit/Framework/ExecutionOrderDependencyTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,5 @@ public function testEmptyClassOrCallable(): void
120120
$this->assertFalse($empty->deepClone());
121121
$this->assertFalse($empty->targetIsClass());
122122
$this->assertSame('', $empty->getTargetClassName());
123-
124123
}
125124
}

tests/unit/Metadata/Api/DataProviderTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ public function testWithVariousIterableDataProvidersFromParent(): void
8484
['P'],
8585
['Q'],
8686
['R'],
87-
8887
], $dataSets);
8988
}
9089

@@ -102,7 +101,6 @@ public function testWithVariousIterableDataProvidersInParent(): void
102101
['P'],
103102
['Q'],
104103
['R'],
105-
106104
], $dataSets);
107105
}
108106

@@ -120,7 +118,6 @@ public function testWithVariousIterableAbstractDataProviders(): void
120118
['Y'],
121119
['Z'],
122120
['P'],
123-
124121
], $dataSets);
125122
}
126123

0 commit comments

Comments
 (0)