Completed
Push — master ( d0c147...7f674b )
by Alexpts
03:47 queued 01:19
created
src/Adapter/MemoryAdapter.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
         $current = time();
60 60
 
61
-        $this->ttlKeys = array_filter($this->ttlKeys, function (int $time, string $key) use ($current) {
61
+        $this->ttlKeys = array_filter($this->ttlKeys, function(int $time, string $key) use ($current) {
62 62
             $isExpired = $time < $current;
63 63
             if ($isExpired) {
64 64
                 unset($this->store[$key]);
Please login to merge, or discard this patch.