Skip to content

Commit d9b01ba

Browse files
committed
Apply no_null_property_initialization PHP-CS-Fixer rule
1 parent 34d9101 commit d9b01ba

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Tests/Iterator/MockSplFileInfo.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ class MockSplFileInfo extends \SplFileInfo
1717
public const TYPE_FILE = 2;
1818
public const TYPE_UNKNOWN = 3;
1919

20-
private $contents = null;
21-
private $mode = null;
22-
private $type = null;
23-
private $relativePath = null;
24-
private $relativePathname = null;
20+
private $contents;
21+
private $mode;
22+
private $type;
23+
private $relativePath;
24+
private $relativePathname;
2525

2626
public function __construct($param)
2727
{

0 commit comments

Comments
 (0)