@@ -26,7 +26,7 @@ |
||
| 26 | 26 | $pimple['cache.backend'] = 'array'; |
| 27 | 27 | $pimple['cache.debug'] = false; |
| 28 | 28 | |
| 29 | - $pimple['cache'] = function () use ($pimple) { |
|
| 29 | + $pimple['cache'] = function() use ($pimple) { |
|
| 30 | 30 | $cache = $this->getCache($pimple['cache.backend']); |
| 31 | 31 | |
| 32 | 32 | if ($pimple['cache.debug']) { |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | $keysMap = $this->getNamespacedKeys($keys); |
| 43 | 43 | $result = $this->store->getItems(array_values($keysMap)); |
| 44 | 44 | $retval = []; |
| 45 | - foreach($keysMap as $originalKey => $transformedKey) { |
|
| 45 | + foreach ($keysMap as $originalKey => $transformedKey) { |
|
| 46 | 46 | if (array_key_exists($transformedKey, $result)) { |
| 47 | 47 | $retval[$originalKey] = $result[$transformedKey]; |
| 48 | 48 | } |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | { |
| 144 | 144 | $retval = []; |
| 145 | 145 | $prefix = $this->getTagKey(); |
| 146 | - foreach($keys as $k) { |
|
| 146 | + foreach ($keys as $k) { |
|
| 147 | 147 | $retval[$k] = "$prefix:$k"; |
| 148 | 148 | } |
| 149 | 149 | return $retval; |