Completed
Push — master ( b7ecb2...08728b )
by Hannes
02:22
created
src/Laravel/CacheItemPool.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public function getItems(array $keys = array())
59 59
     {
60
-        return array_combine($keys, array_map(function ($key) {
60
+        return array_combine($keys, array_map(function($key) {
61 61
             return $this->getItem($key);
62 62
         }, $keys));
63 63
     }
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
             $item = $this->deferred[$key];
74 74
             $expiresAt = $this->getExpiresAt($item);
75 75
 
76
-            if (! $expiresAt) {
76
+            if (!$expiresAt) {
77 77
                 return true;
78 78
             }
79 79
 
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
         unset($this->deferred[$key]);
111 111
 
112
-        if (! $this->hasItem($key)) {
112
+        if (!$this->hasItem($key)) {
113 113
             return true;
114 114
         }
115 115
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     {
143 143
         $expiresAt = $this->getExpiresAt($item);
144 144
 
145
-        if (! $expiresAt) {
145
+        if (!$expiresAt) {
146 146
             try {
147 147
                 $this->repository->forever($item->getKey(), serialize($item->get()));
148 148
             } catch (Exception $exception) {
Please login to merge, or discard this patch.