Completed
Pull Request — master (#692)
by
unknown
16s
created
src/Gaufrette/Stream.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @param int $count The number of bytes
28 28
      */
29
-    public function read(int $count): string|bool;
29
+    public function read(int $count): string | bool;
30 30
 
31 31
     /**
32 32
      * Writes the specified data.
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      *
80 80
      * @return array<string, mixed>|false
81 81
      */
82
-    public function stat(): array|bool;
82
+    public function stat(): array | bool;
83 83
 
84 84
     /**
85 85
      * Retrieve the underlying resource.
Please login to merge, or discard this patch.
src/Gaufrette/File.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     /**
94 94
      * @return int|false Returns the file modified time.
95 95
      */
96
-    public function getMtime(): int|bool
96
+    public function getMtime(): int | bool
97 97
     {
98 98
         return $this->mtime = $this->filesystem->mtime($this->key);
99 99
     }
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      * @return int|bool The number of bytes that were written into the file, or
110 110
      *             FALSE on failure
111 111
      */
112
-    public function setContent(string $content, array $metadata = []): int|bool
112
+    public function setContent(string $content, array $metadata = []): int | bool
113 113
     {
114 114
         $this->content = $content;
115 115
         $this->setMetadata($metadata);
Please login to merge, or discard this patch.