Completed
Push — master ( a25f53...f56795 )
by Marco
03:37 queued 43s
created
lib/Doctrine/Common/Cache/RedisCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
 
96 96
             // Keys have lifetime, use SETEX for each of them
97 97
             foreach ($keysAndValues as $key => $value) {
98
-                if (!$this->redis->setex($key, $lifetime, $value)) {
98
+                if ( ! $this->redis->setex($key, $lifetime, $value)) {
99 99
                     $success = false;
100 100
                 }
101 101
             }
Please login to merge, or discard this patch.
lib/Doctrine/Common/Cache/PhpFileCache.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     {
45 45
         $value = $this->includeFileForId($id);
46 46
 
47
-        if (! $value) {
47
+        if ( ! $value) {
48 48
             return false;
49 49
         }
50 50
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     {
63 63
         $value = $this->includeFileForId($id);
64 64
 
65
-        if (! $value) {
65
+        if ( ! $value) {
66 66
             return false;
67 67
         }
68 68
 
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
             $lifeTime = time() + $lifeTime;
79 79
         }
80 80
 
81
-        $filename  = $this->getFilename($id);
81
+        $filename = $this->getFilename($id);
82 82
 
83 83
         $value = array(
84 84
             'lifetime'  => $lifeTime,
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         // note: error suppression is still faster than `file_exists`, `is_file` and `is_readable`
109 109
         $value = @include $fileName;
110 110
 
111
-        if (! isset($value['lifetime'])) {
111
+        if ( ! isset($value['lifetime'])) {
112 112
             return false;
113 113
         }
114 114
 
Please login to merge, or discard this patch.