Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 115fb5b

Browse files
Fix implicitly-required parameters
1 parent ae0a783 commit 115fb5b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.git-blame-ignore-revs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# Apply php-cs-fixer fix --rules nullable_type_declaration_for_default_null_value
22
f4118e110a46de3ffb799e7d79bf15128d1646ea
33
9519b54417c09c49496a4a6be238e63be9a73465
4+
ae0a783425b80b78376488619bf9106e69193fa4

src/Symfony/Component/HttpKernel/Tests/DependencyInjection/RegisterControllerArgumentLocatorsPassTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ public function fooAction(?NonExistentClass $nonExistent = null)
612612
{
613613
}
614614

615-
public function barAction(?NonExistentClass $nonExistent = null, $bar)
615+
public function barAction(?NonExistentClass $nonExistent, $bar)
616616
{
617617
}
618618
}

src/Symfony/Component/VarDumper/Tests/Caster/ReflectionCasterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,6 @@ public static function stub(): void
650650
}
651651
}
652652

653-
function reflectionParameterFixture(?NotLoadableClass $arg1 = null, $arg2)
653+
function reflectionParameterFixture(?NotLoadableClass $arg1, $arg2)
654654
{
655655
}

0 commit comments

Comments
 (0)