@@ -95,7 +95,7 @@ |
||
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) { |
@@ -169,7 +169,7 @@ |
||
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 | } |