@@ -95,7 +95,7 @@ |
||
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 | } |
@@ -266,7 +266,7 @@ |
||
266 | 266 | $success = true; |
267 | 267 | |
268 | 268 | foreach ($keysAndValues as $key => $value) { |
269 | - if (!$this->doSave($key, $value, $lifetime)) { |
|
269 | + if ( ! $this->doSave($key, $value, $lifetime)) { |
|
270 | 270 | $success = false; |
271 | 271 | } |
272 | 272 | } |