Completed
Push — v5.1 ( 071322...72dbea )
by Georges
02:41
created
src/phpFastCache/Core/Pool/ExtendedCacheItemPoolTrait.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -305,9 +305,9 @@
 block discarded – undo
305 305
         if($item instanceof CacheItemInterface){
306 306
             unset($this->itemInstances[ $item->getKey() ]);
307 307
 
308
-        }else if(is_string($item)){
308
+        } else if(is_string($item)){
309 309
             unset($this->itemInstances[ $item ]);
310
-        }else{
310
+        } else{
311 311
             throw new \InvalidArgumentException('Invalid type for $item variable');
312 312
         }
313 313
         if(gc_enabled()){
Please login to merge, or discard this patch.