Skip to content

Commit ebd0ca7

Browse files
committed
Apply no_null_property_initialization PHP-CS-Fixer rule
1 parent 4389127 commit ebd0ca7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tests/FilesystemTestCase.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@ class FilesystemTestCase extends TestCase
2323
/**
2424
* @var Filesystem
2525
*/
26-
protected $filesystem = null;
26+
protected $filesystem;
2727

2828
/**
2929
* @var string
3030
*/
31-
protected $workspace = null;
31+
protected $workspace;
3232

3333
/**
3434
* @var bool|null Flag for hard links on Windows
3535
*/
36-
private static $linkOnWindows = null;
36+
private static $linkOnWindows;
3737

3838
/**
3939
* @var bool|null Flag for symbolic links on Windows
4040
*/
41-
private static $symlinkOnWindows = null;
41+
private static $symlinkOnWindows;
4242

4343
public static function setUpBeforeClass(): void
4444
{

0 commit comments

Comments
 (0)