Completed
Pull Request — master (#686)
by
unknown
13s
created
src/Gaufrette/StreamWrapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -257,11 +257,11 @@
 block discarded – undo
257 257
         $key = !empty($parts['path']) ? substr($parts['path'], 1) : '';
258 258
 
259 259
         if (null !== $parts['query']) {
260
-            $key .= '?' . $parts['query'];
260
+            $key .= '?'.$parts['query'];
261 261
         }
262 262
 
263 263
         if (null !== $parts['fragment']) {
264
-            $key .= '#' . $parts['fragment'];
264
+            $key .= '#'.$parts['fragment'];
265 265
         }
266 266
 
267 267
         if (empty($domain) || empty($key)) {
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/DoctrineDbal.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
         return [
187 187
             'dirs' => [],
188 188
             'keys' => array_map(
189
-                function ($value) {
189
+                function($value) {
190 190
                     return $value['_key'];
191 191
                 },
192 192
                 $keys
Please login to merge, or discard this patch.
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.