We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4389127 commit ebd0ca7Copy full SHA for ebd0ca7
Tests/FilesystemTestCase.php
@@ -23,22 +23,22 @@ class FilesystemTestCase extends TestCase
23
/**
24
* @var Filesystem
25
*/
26
- protected $filesystem = null;
+ protected $filesystem;
27
28
29
* @var string
30
31
- protected $workspace = null;
+ protected $workspace;
32
33
34
* @var bool|null Flag for hard links on Windows
35
36
- private static $linkOnWindows = null;
+ private static $linkOnWindows;
37
38
39
* @var bool|null Flag for symbolic links on Windows
40
41
- private static $symlinkOnWindows = null;
+ private static $symlinkOnWindows;
42
43
public static function setUpBeforeClass(): void
44
{
0 commit comments