Completed
Pull Request — master (#548)
by Albin
05:45
created
src/Gaufrette/Adapter/Flysystem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
     public function keys()
96 96
     {
97 97
         try {
98
-            return array_map(function ($content) {
98
+            return array_map(function($content) {
99 99
                 return $content['path'];
100 100
             }, $this->adapter->listContents());
101 101
         } catch (\Exception $e) {
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/GridFS.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 block discarded – undo
169 169
         if (isset($this->metadata[$key])) {
170 170
             return $this->metadata[$key];
171 171
         } else {
172
-            $meta = $this->bucket->findOne(['filename' => $key], ['projection' => ['metadata' => 1,'_id' => 0]]);
172
+            $meta = $this->bucket->findOne(['filename' => $key], ['projection' => ['metadata' => 1, '_id' => 0]]);
173 173
             if ($meta === null) {
174 174
                 return array();
175 175
             }
Please login to merge, or discard this patch.