Skip to content

Commit 5b152a6

Browse files
committed
Fix apply rector rules.
1 parent 5a93c2e commit 5b152a6

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

tests/framework/web/FakePhp71Controller.php

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,14 @@ class FakePhp71Controller extends Controller
2121
{
2222
public $enableCsrfValidation = false;
2323

24-
public function actionInjection($before, Request $request, $between, VendorImage $vendorImage, $after, Post $post = null): void
25-
{
26-
24+
public function actionInjection(
25+
$before,
26+
Request $request,
27+
$between,
28+
VendorImage $vendorImage,
29+
Post $post = null,
30+
$after
31+
): void {
2732
}
2833

2934
public function actionNullableInjection(?Request $request, ?Post $post): void

tests/framework/web/FakePhp7Controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class FakePhp7Controller extends Controller
1717
{
1818
public $enableCsrfValidation = false;
1919

20-
public function actionAksi1(int $foo, bool $true, bool $false, float $bar = null): void
20+
public function actionAksi1(int $foo, float $bar = null, bool $true, bool $false): void
2121
{
2222
}
2323

0 commit comments

Comments
 (0)