@@ -17,7 +17,7 @@ |
||
17 | 17 | */ |
18 | 18 | public static function create(string $message = "", int $code = 0, ?Exception $previous = null, array $details = []) |
19 | 19 | { |
20 | - return new self(self::getBefore() . ": " .$message, $code, $previous, $details); |
|
20 | + return new self(self::getBefore() . ": " . $message, $code, $previous, $details); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 |
@@ -17,7 +17,7 @@ |
||
17 | 17 | */ |
18 | 18 | public static function create(string $message = "", int $code = 0, ?Exception $previous = null, array $details = []) |
19 | 19 | { |
20 | - return new self(self::getBefore() . ": " .$message, $code, $previous, $details); |
|
20 | + return new self(self::getBefore() . ": " . $message, $code, $previous, $details); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | return $this; |
46 | 46 | } |
47 | 47 | |
48 | - return new TimeBuilder(function ($formattedTime){ |
|
48 | + return new TimeBuilder(function($formattedTime) { |
|
49 | 49 | $this->expirationTime = $formattedTime; |
50 | 50 | }, $this); |
51 | 51 | } |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | return $this; |
63 | 63 | } |
64 | 64 | |
65 | - return new TimeBuilder(function ($formattedTime){ |
|
65 | + return new TimeBuilder(function($formattedTime) { |
|
66 | 66 | $this->flushAfter = $formattedTime; |
67 | 67 | }, $this); |
68 | 68 | } |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | * @param string|int $ttl |
73 | 73 | * @return string |
74 | 74 | */ |
75 | - public function getCache(string $cacheKey, string $namespace = '', string|int $ttl = 3600) |
|
75 | + public function getCache(string $cacheKey, string $namespace = '', string | int $ttl = 3600) |
|
76 | 76 | { |
77 | 77 | |
78 | 78 | $ttl = CacheFileHelper::ttl($ttl, $this->defaultTTL); |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | * @param string|int $ttl |
97 | 97 | * @return void |
98 | 98 | */ |
99 | - public function putCache(string $cacheKey, mixed $cacheData, string $namespace = '', string|int $ttl = 3600) |
|
99 | + public function putCache(string $cacheKey, mixed $cacheData, string $namespace = '', string | int $ttl = 3600) |
|
100 | 100 | { |
101 | 101 | $cacheFile = $this->buildCacheFilePath($cacheKey, $namespace); |
102 | 102 | $data = $this->fileManager->serialize($cacheData); |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | * @param string $namespace |
172 | 172 | * @return void |
173 | 173 | */ |
174 | - public function renewCache(string $cacheKey, string|int $ttl, string $namespace = '') |
|
174 | + public function renewCache(string $cacheKey, string | int $ttl, string $namespace = '') |
|
175 | 175 | { |
176 | 176 | $cacheData = $this->getCache($cacheKey, $namespace); |
177 | 177 | if ($cacheData) { |
@@ -278,12 +278,12 @@ discard block |
||
278 | 278 | { |
279 | 279 | $flushAfterSeconds = CacheFileHelper::convertExpirationToSeconds($flushAfter); |
280 | 280 | |
281 | - if(!$this->fileManager->fileExists($this->lastFlushTimeFile)) { |
|
281 | + if (!$this->fileManager->fileExists($this->lastFlushTimeFile)) { |
|
282 | 282 | $this->fileManager->writeFile($this->lastFlushTimeFile, time()); |
283 | 283 | return; |
284 | 284 | } |
285 | 285 | |
286 | - $lastFlushTime = (int) $this->fileManager->readFile($this->lastFlushTimeFile); |
|
286 | + $lastFlushTime = (int)$this->fileManager->readFile($this->lastFlushTimeFile); |
|
287 | 287 | |
288 | 288 | if ((time() - $lastFlushTime) >= $flushAfterSeconds) { |
289 | 289 | $this->flushCache(); |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | * @param string|int $ttl |
30 | 30 | * @return bool |
31 | 31 | */ |
32 | - public function store(string $cacheKey, mixed $cacheData, string $namespace, string|int $ttl = 3600) |
|
32 | + public function store(string $cacheKey, mixed $cacheData, string $namespace, string | int $ttl = 3600) |
|
33 | 33 | { |
34 | 34 | |
35 | - if(!empty($this->retrieve($cacheKey, $namespace))) { |
|
35 | + if (!empty($this->retrieve($cacheKey, $namespace))) { |
|
36 | 36 | $this->update($cacheKey, $cacheData, $namespace); |
37 | 37 | } |
38 | 38 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | * @param string $namespace |
116 | 116 | * @return bool |
117 | 117 | */ |
118 | - public function renew(string $cacheKey, string|int $ttl, string $namespace = '') |
|
118 | + public function renew(string $cacheKey, string | int $ttl, string $namespace = '') |
|
119 | 119 | { |
120 | 120 | $currentTime = date('Y-m-d H:i:s'); |
121 | 121 | |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | SET expirationTime = DATE_ADD(expirationTime, INTERVAL ? SECOND) |
136 | 136 | WHERE cacheKey = ? AND cacheNamespace = ? AND expirationTime > ?" |
137 | 137 | ); |
138 | - $stmt->bindValue(1, (int) $ttl, PDO::PARAM_INT); |
|
138 | + $stmt->bindValue(1, (int)$ttl, PDO::PARAM_INT); |
|
139 | 139 | $stmt->bindValue(2, $cacheKey); |
140 | 140 | $stmt->bindValue(3, $namespace); |
141 | 141 | $stmt->bindValue(4, $currentTime); |
@@ -258,13 +258,13 @@ discard block |
||
258 | 258 | { |
259 | 259 | $this->cache->flushCache(); |
260 | 260 | |
261 | - $value = $this->cache->remember('remember_test_key', 60, function () { |
|
261 | + $value = $this->cache->remember('remember_test_key', 60, function() { |
|
262 | 262 | return 'valor_teste'; |
263 | 263 | }); |
264 | 264 | |
265 | 265 | $this->assertEquals('valor_teste', $value); |
266 | 266 | |
267 | - $cachedValue = $this->cache->remember('remember_test_key', 60, function (){ |
|
267 | + $cachedValue = $this->cache->remember('remember_test_key', 60, function() { |
|
268 | 268 | return 'novo_valor'; |
269 | 269 | }); |
270 | 270 | |
@@ -276,12 +276,12 @@ discard block |
||
276 | 276 | { |
277 | 277 | $this->cache->flushCache(); |
278 | 278 | |
279 | - $value = $this->cache->rememberForever('remember_forever_key', function () { |
|
279 | + $value = $this->cache->rememberForever('remember_forever_key', function() { |
|
280 | 280 | return 'valor_eterno'; |
281 | 281 | }); |
282 | 282 | $this->assertEquals('valor_eterno', $value); |
283 | 283 | |
284 | - $cachedValue = $this->cache->rememberForever('remember_forever_key', function () { |
|
284 | + $cachedValue = $this->cache->rememberForever('remember_forever_key', function() { |
|
285 | 285 | return 'novo_valor'; |
286 | 286 | }); |
287 | 287 |
@@ -232,13 +232,13 @@ discard block |
||
232 | 232 | |
233 | 233 | public function test_remember_saves_and_recover_values() |
234 | 234 | { |
235 | - $value = $this->cache->remember('remember_test_key', 60, function () { |
|
235 | + $value = $this->cache->remember('remember_test_key', 60, function() { |
|
236 | 236 | return 'valor_teste'; |
237 | 237 | }); |
238 | 238 | |
239 | 239 | $this->assertEquals('valor_teste', $value); |
240 | 240 | |
241 | - $cachedValue = $this->cache->remember('remember_test_key', 60, function (){ |
|
241 | + $cachedValue = $this->cache->remember('remember_test_key', 60, function() { |
|
242 | 242 | return 'novo_valor'; |
243 | 243 | }); |
244 | 244 | |
@@ -249,12 +249,12 @@ discard block |
||
249 | 249 | public function test_remember_forever_saves_value_indefinitely() |
250 | 250 | { |
251 | 251 | |
252 | - $value = $this->cache->rememberForever('remember_forever_key', function () { |
|
252 | + $value = $this->cache->rememberForever('remember_forever_key', function() { |
|
253 | 253 | return 'valor_eterno'; |
254 | 254 | }); |
255 | 255 | $this->assertEquals('valor_eterno', $value); |
256 | 256 | |
257 | - $cachedValue = $this->cache->rememberForever('remember_forever_key', function () { |
|
257 | + $cachedValue = $this->cache->rememberForever('remember_forever_key', function() { |
|
258 | 258 | return 'novo_valor'; |
259 | 259 | }); |
260 | 260 |
@@ -258,13 +258,13 @@ discard block |
||
258 | 258 | { |
259 | 259 | $this->cache->flushCache(); |
260 | 260 | |
261 | - $value = $this->cache->remember('remember_test_key', 60, function () { |
|
261 | + $value = $this->cache->remember('remember_test_key', 60, function() { |
|
262 | 262 | return 'valor_teste'; |
263 | 263 | }); |
264 | 264 | |
265 | 265 | $this->assertEquals('valor_teste', $value); |
266 | 266 | |
267 | - $cachedValue = $this->cache->remember('remember_test_key', 60, function (){ |
|
267 | + $cachedValue = $this->cache->remember('remember_test_key', 60, function() { |
|
268 | 268 | return 'novo_valor'; |
269 | 269 | }); |
270 | 270 | |
@@ -276,12 +276,12 @@ discard block |
||
276 | 276 | { |
277 | 277 | $this->cache->flushCache(); |
278 | 278 | |
279 | - $value = $this->cache->rememberForever('remember_forever_key', function () { |
|
279 | + $value = $this->cache->rememberForever('remember_forever_key', function() { |
|
280 | 280 | return 'valor_eterno'; |
281 | 281 | }); |
282 | 282 | $this->assertEquals('valor_eterno', $value); |
283 | 283 | |
284 | - $cachedValue = $this->cache->rememberForever('remember_forever_key', function () { |
|
284 | + $cachedValue = $this->cache->rememberForever('remember_forever_key', function() { |
|
285 | 285 | return 'novo_valor'; |
286 | 286 | }); |
287 | 287 |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | * @param int|string $ttl |
45 | 45 | * @return mixed |
46 | 46 | */ |
47 | - public function getCache(string $cacheKey, string $namespace = '', string|int $ttl = 3600) |
|
47 | + public function getCache(string $cacheKey, string $namespace = '', string | int $ttl = 3600) |
|
48 | 48 | { |
49 | 49 | |
50 | 50 | $arrayStoreKey = $this->buildArrayKey($cacheKey, $namespace); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $expirationTime = $cacheData['expirationTime'] ?? 0; |
60 | 60 | $now = time(); |
61 | 61 | |
62 | - if($expirationTime !== 0 && $now >= $expirationTime) { |
|
62 | + if ($expirationTime !== 0 && $now >= $expirationTime) { |
|
63 | 63 | list($np, $key) = explode(':', $arrayStoreKey); |
64 | 64 | $this->clearCache($key, $np); |
65 | 65 | $this->setMessage("cacheKey: {$key} has expired.", false); |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | * @param int|string $ttl |
80 | 80 | * @return bool |
81 | 81 | */ |
82 | - public function putCache(string $cacheKey, mixed $cacheData, string $namespace = '', int|string $ttl = 3600) |
|
82 | + public function putCache(string $cacheKey, mixed $cacheData, string $namespace = '', int | string $ttl = 3600) |
|
83 | 83 | { |
84 | 84 | |
85 | 85 | $arrayStoreKey = $this->buildArrayKey($cacheKey, $namespace); |
@@ -159,12 +159,12 @@ discard block |
||
159 | 159 | * @param string $namespace |
160 | 160 | * @return void |
161 | 161 | */ |
162 | - public function renewCache(string $cacheKey, int|string $ttl = 3600, string $namespace = '') |
|
162 | + public function renewCache(string $cacheKey, int | string $ttl = 3600, string $namespace = '') |
|
163 | 163 | { |
164 | 164 | $arrayStoreKey = $this->buildArrayKey($cacheKey, $namespace); |
165 | 165 | |
166 | 166 | if (isset($this->arrayStore[$arrayStoreKey])) { |
167 | - $ttlSeconds = is_numeric($ttl) ? (int) $ttl : strtotime($ttl) - time(); |
|
167 | + $ttlSeconds = is_numeric($ttl) ? (int)$ttl : strtotime($ttl) - time(); |
|
168 | 168 | $this->arrayStore[$arrayStoreKey]['expirationTime'] = time() + $ttlSeconds; |
169 | 169 | $this->setMessage("cacheKey: {$cacheKey} renewed successfully", true); |
170 | 170 | $this->logger->debug("{$this->getMessage()} from array driver."); |