Completed
Pull Request — master (#390)
by Саша
09:26 queued 06:27
created
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
 
187 187
         return array(
188 188
             'dirs' => array(),
189
-            'keys' => array_map(function ($value) {
189
+            'keys' => array_map(function($value) {
190 190
                     return $value['_key'];
191 191
                 },
192 192
                 $keys)
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/AzureBlobStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -207,7 +207,7 @@
 block discarded – undo
207 207
             $blobList = $this->blobProxy->listBlobs($this->containerName);
208 208
 
209 209
             return array_map(
210
-                function ($blob) {
210
+                function($blob) {
211 211
                     return $blob->getName();
212 212
                 },
213 213
                 $blobList->getBlobs()
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/MogileFS.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
 
90 90
                 if ($status) {
91 91
                     $params = array('key' => $key, 'class' => $metadata['mogile_class'], 'devid' => $res['devid'],
92
-                                    'fid' => $res['fid'], 'path' => urldecode($res['path']), );
92
+                                    'fid' => $res['fid'], 'path' => urldecode($res['path']),);
93 93
                     $closeres = $this->doRequest('CREATE_CLOSE', $params);
94 94
                 }
95 95
             }
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/Ftp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
         $this->ensureDirectoryExists($this->directory, $this->create);
120 120
 
121 121
         $file  = $this->computePath($key);
122
-        $lines = ftp_rawlist($this->getConnection(), '-al ' . str_replace('\\', '/', dirname($file)));
122
+        $lines = ftp_rawlist($this->getConnection(), '-al '.str_replace('\\', '/', dirname($file)));
123 123
 
124 124
         if (false === $lines) {
125 125
             return false;
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/Flysystem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
      */
59 59
     public function keys()
60 60
     {
61
-        return array_map(function ($content) {
61
+        return array_map(function($content) {
62 62
             return $content['path'];
63 63
         }, $this->adapter->listContents());
64 64
     }
Please login to merge, or discard this patch.