Skip to content

Commit 7b25583

Browse files
Merge branch '11.4' into 11.5
2 parents 6321d41 + 10ae254 commit 7b25583

File tree

6 files changed

+18
-8
lines changed

6 files changed

+18
-8
lines changed

.php-cs-fixer.dist.php

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,24 @@
171171
'no_empty_comment' => true,
172172
'no_empty_phpdoc' => true,
173173
'no_empty_statement' => true,
174-
'no_extra_blank_lines' => true,
174+
'no_extra_blank_lines' => [
175+
'tokens' => [
176+
'attribute',
177+
'break',
178+
'case',
179+
'continue',
180+
'curly_brace_block',
181+
'default',
182+
'extra',
183+
'parenthesis_brace_block',
184+
'return',
185+
'square_brace_block',
186+
'switch',
187+
'throw',
188+
'use',
189+
'use_trait',
190+
],
191+
],
175192
'no_homoglyph_names' => true,
176193
'no_leading_import_slash' => true,
177194
'no_leading_namespace_whitespace' => true,

src/Framework/MockObject/Generator/HookedPropertyGenerator.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ public function generate(string $className, array $properties): string
8080
}
8181

8282
EOT;
83-
8483
}
8584

8685
return $code;

src/Util/PHP/DefaultJobRunner.php

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

9898
unset($key, $value);
99-
10099
}
101100

102101
$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)