Completed
Push — master ( 5cfb46...2936f6 )
by Lars
01:39
created
src/voku/cache/CacheChain.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace voku\cache;
6 6
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
     /* @var $cache iCache */
90 90
     foreach ($this->caches as $cache) {
91
-      $results[] =$cache->setItem($key, $value, $ttl);
91
+      $results[] = $cache->setItem($key, $value, $ttl);
92 92
     }
93 93
 
94 94
     return \in_array(false, $results, true) === false;
Please login to merge, or discard this patch.