Completed
Pull Request — master (#686)
by
unknown
13s
created
src/Gaufrette/Adapter/GoogleCloudStorage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.