Completed
Pull Request — master (#251)
by Gabriel
10:22
created
lib/Doctrine/Common/Cache/CacheProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
         $success = true;
255 255
 
256 256
         foreach ($keysAndValues as $key => $value) {
257
-            if (! $this->doSave($key, $value, $lifetime)) {
257
+            if ( ! $this->doSave($key, $value, $lifetime)) {
258 258
                 $success = false;
259 259
             }
260 260
         }
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
         $success = true;
287 287
 
288 288
         foreach ($keys as $key) {
289
-            if (! $this->doDelete($key)) {
289
+            if ( ! $this->doDelete($key)) {
290 290
                 $success = false;
291 291
             }
292 292
         }
Please login to merge, or discard this patch.
lib/Doctrine/Common/Cache/RiakCache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             $response = $this->bucket->get($id);
42 42
 
43 43
             // No objects found
44
-            if (! $response->hasObject()) {
44
+            if ( ! $response->hasObject()) {
45 45
                 return false;
46 46
             }
47 47
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
             $response = $this->bucket->get($id, $input);
84 84
 
85 85
             // No objects found
86
-            if (! $response->hasObject()) {
86
+            if ( ! $response->hasObject()) {
87 87
                 return false;
88 88
             }
89 89
 
Please login to merge, or discard this patch.
lib/Doctrine/Common/Cache/CouchbaseCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
         $stats   = $this->couchbase->getStats();
91 91
         $servers = $this->couchbase->getServers();
92 92
         $server  = explode(':', $servers[0]);
93
-        $key     = $server[0] . ':11210';
93
+        $key     = $server[0].':11210';
94 94
         $stats   = $stats[$key];
95 95
         return [
96 96
             Cache::STATS_HITS   => $stats['get_hits'],
Please login to merge, or discard this patch.