Completed
Pull Request — master (#2)
by William Johnson S.
02:22
created
src/MemCached.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.