Completed
Pull Request — master (#700)
by
unknown
43s
created
src/Gaufrette/Util/Checksum.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Gaufrette/Util/Size.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.