We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47924c7 commit ab0c940Copy full SHA for ab0c940
Filesystem.php
@@ -22,7 +22,7 @@
22
*/
23
class Filesystem
24
{
25
- private static $lastError;
+ private static ?string $lastError = null;
26
27
/**
28
* Copies a file.
Path.php
@@ -42,12 +42,9 @@ final class Path
42
*
43
* @var array<string, string>
44
45
- private static $buffer = [];
+ private static array $buffer = [];
46
47
- /**
48
- * @var int
49
- */
50
- private static $bufferSize = 0;
+ private static int $bufferSize = 0;
51
52
53
* Canonicalizes the given path.
0 commit comments