Completed
Pull Request — master (#650)
by Ian
45s
created
src/Gaufrette/Adapter/FlysystemV2.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         try {
54 54
             $this->adapter->write($key, $content, $this->config);
55 55
             return $this->adapter->fileSize($key)->fileSize();
56
-        } catch(UnableToWriteFile $exception) {
56
+        } catch (UnableToWriteFile $exception) {
57 57
             return false;
58 58
         }
59 59
     }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      */
72 72
     public function keys()
73 73
     {
74
-        return array_map(function (StorageAttributes $content) {
74
+        return array_map(function(StorageAttributes $content) {
75 75
             return $content->path();
76 76
         }, $this->adapter->listContents('', true));
77 77
     }
Please login to merge, or discard this patch.