Completed
Push — main ( 3efc21...43004f )
by smiley
18s queued 11s
created
src/APCUCache.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.