@@ -39,7 +39,7 @@ |
||
| 39 | 39 | * Constructs an Http object. |
| 40 | 40 | * |
| 41 | 41 | * @param string $base The base URL. |
| 42 | - * @param \GuzzleHttp\ClientInterface $client An optional Guzzle client. |
|
| 42 | + * @param ClientInterface $client An optional Guzzle client. |
|
| 43 | 43 | */ |
| 44 | 44 | public function __construct($base, ClientInterface $client = null) |
| 45 | 45 | { |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | public function getMetadata($path) |
| 115 | 115 | { |
| 116 | - if (! $response = $this->head($path)) { |
|
| 116 | + if (!$response = $this->head($path)) { |
|
| 117 | 117 | return false; |
| 118 | 118 | } |
| 119 | 119 | |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | */ |
| 179 | 179 | public function has($path) |
| 180 | 180 | { |
| 181 | - if (! $response = $this->head($path)) { |
|
| 181 | + if (!$response = $this->head($path)) { |
|
| 182 | 182 | return false; |
| 183 | 183 | } |
| 184 | 184 | |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | */ |
| 199 | 199 | public function read($path) |
| 200 | 200 | { |
| 201 | - if (! $response = $this->get($path)) { |
|
| 201 | + if (!$response = $this->get($path)) { |
|
| 202 | 202 | return false; |
| 203 | 203 | } |
| 204 | 204 | |
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | */ |
| 214 | 214 | public function readStream($path) |
| 215 | 215 | { |
| 216 | - if (! $response = $this->get($path)) { |
|
| 216 | + if (!$response = $this->get($path)) { |
|
| 217 | 217 | return false; |
| 218 | 218 | } |
| 219 | 219 | |