@@ -20,7 +20,7 @@ |
||
| 20 | 20 | /** |
| 21 | 21 | * Returns the checksum of the specified file. |
| 22 | 22 | */ |
| 23 | - public static function fromFile(string $filename): false|string |
|
| 23 | + public static function fromFile(string $filename): false | string |
|
| 24 | 24 | { |
| 25 | 25 | return md5_file($filename); |
| 26 | 26 | } |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | /** |
| 25 | 25 | * Returns the size in bytes from the given file. |
| 26 | 26 | */ |
| 27 | - public static function fromFile(string $filename): false|int |
|
| 27 | + public static function fromFile(string $filename): false | int |
|
| 28 | 28 | { |
| 29 | 29 | return filesize($filename); |
| 30 | 30 | } |