Passed
Push — master ( 2a9684...6905aa )
by Kevin
01:55
created
src/Storage/Psr16CacheStorage.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -35,11 +35,11 @@
 block discarded – undo
35 35
      */
36 36
     public function save($key, CacheEntry $data)
37 37
     {
38
-      $ttl = $data->getTTL();
39
-      if ($ttl === 0) {
38
+        $ttl = $data->getTTL();
39
+        if ($ttl === 0) {
40 40
         return $this->cache->set($key, $data);
41
-      }
42
-      return $this->cache->set($key, $data, $data->getTTL());
41
+        }
42
+        return $this->cache->set($key, $data, $data->getTTL());
43 43
     }
44 44
 
45 45
     /**
Please login to merge, or discard this patch.