Passed
Push — master ( 6bd64d...7f2585 )
by Kevin
57s
created
src/Storage/FlysystemStorage.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,12 +44,12 @@
 block discarded – undo
44 44
      */
45 45
     public function save($key, CacheEntry $data)
46 46
     {
47
-      try {
47
+        try {
48 48
         $this->filesystem->write($key, serialize($data));
49 49
         return true;
50
-      } catch (FilesystemException $e) {
50
+        } catch (FilesystemException $e) {
51 51
         return false;
52
-      }
52
+        }
53 53
     }
54 54
 
55 55
     /**
Please login to merge, or discard this patch.