Skip to content

Commit ab0c940

Browse files
Add types to private and internal properties
1 parent 47924c7 commit ab0c940

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

Filesystem.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323
class Filesystem
2424
{
25-
private static $lastError;
25+
private static ?string $lastError = null;
2626

2727
/**
2828
* Copies a file.

Path.php

+2-5
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,9 @@ final class Path
4242
*
4343
* @var array<string, string>
4444
*/
45-
private static $buffer = [];
45+
private static array $buffer = [];
4646

47-
/**
48-
* @var int
49-
*/
50-
private static $bufferSize = 0;
47+
private static int $bufferSize = 0;
5148

5249
/**
5350
* Canonicalizes the given path.

0 commit comments

Comments
 (0)