Completed
Push — master ( 85bfd5...ed9f6c )
by Aimeos
15:07
created
lib/mwlib/src/MW/Config/Decorator/APC.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
 		// negative cache
57 57
 		$success = false;
58
-		apcu_fetch( '-' . $this->prefix . $path, $success );
58
+		apcu_fetch( '-'.$this->prefix.$path, $success );
59 59
 
60 60
 		if( $success === true ) {
61 61
 			return $default;
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 
64 64
 		// regular cache
65 65
 		$success = false;
66
-		$value = apcu_fetch( $this->prefix . $path, $success );
66
+		$value = apcu_fetch( $this->prefix.$path, $success );
67 67
 
68 68
 		if( $success === true ) {
69 69
 			return $value;
@@ -72,11 +72,11 @@  discard block
 block discarded – undo
72 72
 		// not cached
73 73
 		if( ( $value = parent::get( $path, null ) ) === null )
74 74
 		{
75
-			apcu_store( '-' . $this->prefix . $path, null );
75
+			apcu_store( '-'.$this->prefix.$path, null );
76 76
 			return $default;
77 77
 		}
78 78
 
79
-		apcu_store( $this->prefix . $path, $value );
79
+		apcu_store( $this->prefix.$path, $value );
80 80
 
81 81
 		return $value;
82 82
 	}
@@ -94,6 +94,6 @@  discard block
 block discarded – undo
94 94
 
95 95
 		parent::set( $path, $value );
96 96
 
97
-		apcu_store( $this->prefix . $path, $value );
97
+		apcu_store( $this->prefix.$path, $value );
98 98
 	}
99 99
 }
Please login to merge, or discard this patch.