Skip to content

Commit 8ca22cb

Browse files
minor #49896 Apply no_null_property_initialization PHP-CS-Fixer rule (yguedidi)
This PR was merged into the 6.3 branch. Discussion ---------- Apply no_null_property_initialization PHP-CS-Fixer rule | Q | A | ------------- | --- | Branch? | 6.3 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | | License | MIT | Doc PR | After a discussion with `@stof`, this rule should be part of the ``@Symfony`` PHP-CS-Fixer ruleset. This PR apply the rule on the Symfony code base. see PHP-CS-Fixer/PHP-CS-Fixer#6876 for the PR on PHP-CS-Fixer Commits ------- 2320c2a906 Apply no_null_property_initialization PHP-CS-Fixer rule
2 parents 21e7c84 + f9a2954 commit 8ca22cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/RouterTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525

2626
class RouterTest extends TestCase
2727
{
28-
private $router = null;
28+
private $router;
2929

30-
private $loader = null;
30+
private $loader;
3131

3232
private $cacheDir;
3333

0 commit comments

Comments
 (0)