@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | { |
| 44 | 44 | parent::__construct($directory, $extension, $umask); |
| 45 | 45 | |
| 46 | - self::$emptyErrorHandler = function () { |
|
| 46 | + self::$emptyErrorHandler = function() { |
|
| 47 | 47 | }; |
| 48 | 48 | } |
| 49 | 49 | |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | $lifeTime = time() + $lifeTime; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - $filename = $this->getFilename($id); |
|
| 91 | + $filename = $this->getFilename($id); |
|
| 92 | 92 | |
| 93 | 93 | $value = [ |
| 94 | 94 | 'lifetime' => $lifeTime, |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | * |
| 112 | 112 | * @return array|null |
| 113 | 113 | */ |
| 114 | - private function includeFileForId(string $id) : ?array |
|
| 114 | + private function includeFileForId(string $id) : ? array |
|
| 115 | 115 | { |
| 116 | 116 | $fileName = $this->getFilename($id); |
| 117 | 117 | |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | |
| 123 | 123 | restore_error_handler(); |
| 124 | 124 | |
| 125 | - if (! isset($value['lifetime'])) { |
|
| 125 | + if ( ! isset($value['lifetime'])) { |
|
| 126 | 126 | return null; |
| 127 | 127 | } |
| 128 | 128 | |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | */ |
| 192 | 192 | private function getNamespacedId(string $id) : string |
| 193 | 193 | { |
| 194 | - $namespaceVersion = $this->getNamespaceVersion(); |
|
| 194 | + $namespaceVersion = $this->getNamespaceVersion(); |
|
| 195 | 195 | |
| 196 | 196 | return sprintf('%s[%s][%s]', $this->namespace, $id, $namespaceVersion); |
| 197 | 197 | } |
@@ -274,7 +274,7 @@ discard block |
||
| 274 | 274 | $success = true; |
| 275 | 275 | |
| 276 | 276 | foreach ($keysAndValues as $key => $value) { |
| 277 | - if (!$this->doSave($key, $value, $lifetime)) { |
|
| 277 | + if ( ! $this->doSave($key, $value, $lifetime)) { |
|
| 278 | 278 | $success = false; |
| 279 | 279 | } |
| 280 | 280 | } |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | $success = true; |
| 307 | 307 | |
| 308 | 308 | foreach ($keys as $key) { |
| 309 | - if (! $this->doDelete($key)) { |
|
| 309 | + if ( ! $this->doDelete($key)) { |
|
| 310 | 310 | $success = false; |
| 311 | 311 | } |
| 312 | 312 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /* |
| 6 | 6 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | $this->collection->updateOne( |
| 121 | 121 | ['_id' => $id], |
| 122 | 122 | ['$set' => [ |
| 123 | - MongoDBCache::EXPIRATION_FIELD => ($lifeTime > 0 ? new UTCDateTime((time() + $lifeTime) * 1000): null), |
|
| 123 | + MongoDBCache::EXPIRATION_FIELD => ($lifeTime > 0 ? new UTCDateTime((time() + $lifeTime) * 1000) : null), |
|
| 124 | 124 | MongoDBCache::DATA_FIELD => new Binary(serialize($data), Binary::TYPE_GENERIC), |
| 125 | 125 | ]], |
| 126 | 126 | ['upsert' => true] |