@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | */ |
122 | 122 | public function getMetadata($path) |
123 | 123 | { |
124 | - if (! $response = $this->head($path)) { |
|
124 | + if (!$response = $this->head($path)) { |
|
125 | 125 | return false; |
126 | 126 | } |
127 | 127 | |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | */ |
190 | 190 | public function has($path) |
191 | 191 | { |
192 | - if (! $response = $this->head($path)) { |
|
192 | + if (!$response = $this->head($path)) { |
|
193 | 193 | return false; |
194 | 194 | } |
195 | 195 | |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | */ |
210 | 210 | public function read($path) |
211 | 211 | { |
212 | - if (! $response = $this->get($path)) { |
|
212 | + if (!$response = $this->get($path)) { |
|
213 | 213 | return false; |
214 | 214 | } |
215 | 215 | |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | */ |
225 | 225 | public function readStream($path) |
226 | 226 | { |
227 | - if (! $response = $this->get($path)) { |
|
227 | + if (!$response = $this->get($path)) { |
|
228 | 228 | return false; |
229 | 229 | } |
230 | 230 | |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | */ |
318 | 318 | protected function head($path) |
319 | 319 | { |
320 | - if (! $this->supportsHead) { |
|
320 | + if (!$this->supportsHead) { |
|
321 | 321 | return $this->get($path); |
322 | 322 | } |
323 | 323 |