@@ -149,7 +149,7 @@ |
||
| 149 | 149 | */ |
| 150 | 150 | private function populatePreviousCaches($index, $key, $item, $timeToLive) |
| 151 | 151 | { |
| 152 | - for (--$index; $index >= 0 ; $index--) { |
|
| 152 | + for (--$index; $index >= 0; $index--) { |
|
| 153 | 153 | $this->cache[$index]->set($key, $item, $timeToLive); |
| 154 | 154 | } |
| 155 | 155 | } |
@@ -4,7 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Cmp\Cache\Cache; |
| 6 | 6 | use Cmp\Cache\Exceptions\NotFoundException; |
| 7 | -use Cmp\Cache\TimeToLiveAwareCache; |
|
| 8 | 7 | use Cmp\Cache\Traits\MultiCacheTrait; |
| 9 | 8 | use Redis; |
| 10 | 9 | |