@@ -24,10 +24,10 @@ discard block |
||
24 | 24 | if (!is_object($driverInstance)) { |
25 | 25 | echo '[FAIL] CacheManager::getInstance() returned an invalid variable type:' . gettype($driverInstance) . "\n"; |
26 | 26 | $status = 1; |
27 | -}else if(!($driverInstance instanceof CacheItemPoolInterface)){ |
|
27 | +} else if(!($driverInstance instanceof CacheItemPoolInterface)){ |
|
28 | 28 | echo '[FAIL] CacheManager::getInstance() returned an invalid class:' . get_class($driverInstance) . "\n"; |
29 | 29 | $status = 1; |
30 | -}else{ |
|
30 | +} else{ |
|
31 | 31 | $key = 'test_attaching_detaching'; |
32 | 32 | |
33 | 33 | $itemDetached = $driverInstance->getItem($key); |
@@ -37,8 +37,7 @@ discard block |
||
37 | 37 | if(!$driverInstance->isAttached($itemDetached)) |
38 | 38 | { |
39 | 39 | echo '[PASS] ExtendedCacheItemPoolInterface::isAttached() identified $itemDetached as being detached.' . "\n"; |
40 | - } |
|
41 | - else |
|
40 | + } else |
|
42 | 41 | { |
43 | 42 | echo '[FAIL] ExtendedCacheItemPoolInterface::isAttached() failed to identify $itemDetached as to be detached.' . "\n"; |
44 | 43 | $status = 1; |
@@ -48,7 +47,7 @@ discard block |
||
48 | 47 | $driverInstance->attachItem($itemDetached); |
49 | 48 | echo '[FAIL] ExtendedCacheItemPoolInterface::attachItem() attached $itemDetached without trowing an error.' . "\n"; |
50 | 49 | $status = 1; |
51 | - }catch(\LogicException $e){ |
|
50 | + } catch(\LogicException $e){ |
|
52 | 51 | echo '[PASS] ExtendedCacheItemPoolInterface::attachItem() failed to attach $itemDetached by trowing a LogicException exception.' . "\n"; |
53 | 52 | } |
54 | 53 |
@@ -215,7 +215,7 @@ |
||
215 | 215 | { |
216 | 216 | if (!array_key_exists($item->getKey(), $this->itemInstances)) { |
217 | 217 | $this->itemInstances[ $item->getKey() ] = $item; |
218 | - }else if(spl_object_hash($item) !== spl_object_hash($this->itemInstances[ $item->getKey() ])){ |
|
218 | + } else if(spl_object_hash($item) !== spl_object_hash($this->itemInstances[ $item->getKey() ])){ |
|
219 | 219 | throw new \RuntimeException('Spl object hash mismatches ! You probably tried to save a detached item which has been already retrieved from cache.'); |
220 | 220 | } |
221 | 221 |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | { |
327 | 327 | if(isset($this->itemInstances[$item->getKey()]) && spl_object_hash($item) !== spl_object_hash($this->itemInstances[ $item->getKey() ])){ |
328 | 328 | throw new \LogicException('The item already exists and cannot be overwritten because the Spl object hash mismatches ! You probably tried to re-attach a detached item which has been already retrieved from cache.'); |
329 | - }else{ |
|
329 | + } else{ |
|
330 | 330 | $this->itemInstances[$item->getKey()] = $item; |
331 | 331 | } |
332 | 332 | } |
@@ -342,9 +342,9 @@ discard block |
||
342 | 342 | if($item instanceof CacheItemInterface){ |
343 | 343 | unset($this->itemInstances[ $item->getKey() ]); |
344 | 344 | |
345 | - }else if(is_string($item)){ |
|
345 | + } else if(is_string($item)){ |
|
346 | 346 | unset($this->itemInstances[ $item ]); |
347 | - }else{ |
|
347 | + } else{ |
|
348 | 348 | throw new \InvalidArgumentException('Invalid type for $item variable'); |
349 | 349 | } |
350 | 350 | if(gc_enabled()){ |