@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | $response = $httpClient->request('GET', $object->getMediaLink()); |
126 | 126 | if ($response->getStatusCode() == 200) { |
127 | 127 | $this->setMetadata($key, $object->getMetadata()); |
128 | - return (string)$response->getBody(); |
|
128 | + return (string) $response->getBody(); |
|
129 | 129 | } |
130 | 130 | } |
131 | 131 | |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | */ |
285 | 285 | public function isDirectory($key) |
286 | 286 | { |
287 | - if ($this->exists($key . '/')) { |
|
287 | + if ($this->exists($key.'/')) { |
|
288 | 288 | return true; |
289 | 289 | } |
290 | 290 |