@@ -16,13 +16,13 @@ |
||
16 | 16 | |
17 | 17 | use function apcu_clear_cache, apcu_delete, apcu_fetch, apcu_store; |
18 | 18 | |
19 | -class APCUCache extends CacheDriverAbstract{ |
|
19 | +class APCUCache extends CacheDriverAbstract { |
|
20 | 20 | |
21 | 21 | /** @inheritdoc */ |
22 | - public function get($key, $default = null){ |
|
22 | + public function get($key, $default = null) { |
|
23 | 23 | $value = apcu_fetch($this->checkKey($key)); |
24 | 24 | |
25 | - if($value !== false){ |
|
25 | + if ($value !== false) { |
|
26 | 26 | return $value; |
27 | 27 | } |
28 | 28 |