Skip to content

Commit

Permalink
Apply no_null_property_initialization PHP-CS-Fixer rule
Browse files Browse the repository at this point in the history
  • Loading branch information
yguedidi committed Apr 2, 2023
1 parent 34d9101 commit d9b01ba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Tests/Iterator/MockSplFileInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ class MockSplFileInfo extends \SplFileInfo
public const TYPE_FILE = 2;
public const TYPE_UNKNOWN = 3;

private $contents = null;
private $mode = null;
private $type = null;
private $relativePath = null;
private $relativePathname = null;
private $contents;
private $mode;
private $type;
private $relativePath;
private $relativePathname;

public function __construct($param)
{
Expand Down

0 comments on commit d9b01ba

Please sign in to comment.