| @@ -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 | |
| @@ -202,7 +202,7 @@ discard block | ||
| 202 | 202 | */ | 
| 203 | 203 | public function read($path) | 
| 204 | 204 |      { | 
| 205 | -        if (! $response = $this->get($path)) { | |
| 205 | +        if (!$response = $this->get($path)) { | |
| 206 | 206 | return false; | 
| 207 | 207 | } | 
| 208 | 208 | |
| @@ -217,7 +217,7 @@ discard block | ||
| 217 | 217 | */ | 
| 218 | 218 | public function readStream($path) | 
| 219 | 219 |      { | 
| 220 | -        if (! $response = $this->get($path)) { | |
| 220 | +        if (!$response = $this->get($path)) { | |
| 221 | 221 | return false; | 
| 222 | 222 | } | 
| 223 | 223 | |
| @@ -310,7 +310,7 @@ discard block | ||
| 310 | 310 | */ | 
| 311 | 311 | protected function head($path) | 
| 312 | 312 |      { | 
| 313 | -        if (! $this->supportsHead) { | |
| 313 | +        if (!$this->supportsHead) { | |
| 314 | 314 | return $this->get($path); | 
| 315 | 315 | } | 
| 316 | 316 | |