@@ -142,7 +142,7 @@ |
||
| 142 | 142 | |
| 143 | 143 | // Find all keys, iterate and them delete the only ones that starts with the namespace |
| 144 | 144 | $cacheKeys = $this->memcachedInstance->getAllKeys(); |
| 145 | - $filteredCacheKeys = array_filter($cacheKeys, function ($key) use ($namespace) { |
|
| 145 | + $filteredCacheKeys = array_filter($cacheKeys, function($key) use ($namespace) { |
|
| 146 | 146 | return strpos($key, $namespace) === 0; |
| 147 | 147 | }); |
| 148 | 148 | |