@@ -9,8 +9,8 @@ |
||
9 | 9 | */ |
10 | 10 | interface CacheerInterface |
11 | 11 | { |
12 | - public function getCache(string $cacheKey, string $namespace = '', string|int $ttl = 3600); |
|
13 | - public function putCache(string $cacheKey, mixed $cacheData, string $namespace = '', int|string $ttl = 3600); |
|
12 | + public function getCache(string $cacheKey, string $namespace = '', string | int $ttl = 3600); |
|
13 | + public function putCache(string $cacheKey, mixed $cacheData, string $namespace = '', int | string $ttl = 3600); |
|
14 | 14 | public function flushCache(); |
15 | 15 | public function clearCache(string $cacheKey, string $namespace = ''); |
16 | 16 | public function has(string $cacheKey, string $namespace = ''); |
@@ -19,7 +19,7 @@ |
||
19 | 19 | */ |
20 | 20 | public static function serialize(mixed $data, bool $serialize = true) |
21 | 21 | { |
22 | - if($serialize) { |
|
22 | + if ($serialize) { |
|
23 | 23 | return serialize($data); |
24 | 24 | } |
25 | 25 |
@@ -37,7 +37,7 @@ |
||
37 | 37 | */ |
38 | 38 | private static function auth() |
39 | 39 | { |
40 | - if(is_string(REDIS_CONNECTION_CONFIG['REDIS_PASSWORD']) && REDIS_CONNECTION_CONFIG['REDIS_PASSWORD'] !== '') { |
|
40 | + if (is_string(REDIS_CONNECTION_CONFIG['REDIS_PASSWORD']) && REDIS_CONNECTION_CONFIG['REDIS_PASSWORD'] !== '') { |
|
41 | 41 | self::$redis->auth(REDIS_CONNECTION_CONFIG['REDIS_PASSWORD']); |
42 | 42 | } |
43 | 43 | } |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | $Cacheer->putCache($cacheKey, $userProfile, ttl: 300); |
20 | 20 | |
21 | 21 | // Recuperando dados do cache |
22 | -if($Cacheer->isSuccess()){ |
|
22 | +if ($Cacheer->isSuccess()) { |
|
23 | 23 | echo "Cache Found: "; |
24 | 24 | print_r($Cacheer->getCache($cacheKey)); |
25 | 25 | } else { |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | // Renovando os dados do cache |
30 | 30 | $Cacheer->renewCache($cacheKey, 3600); |
31 | 31 | |
32 | -if($Cacheer->isSuccess()){ |
|
32 | +if ($Cacheer->isSuccess()) { |
|
33 | 33 | echo $Cacheer->getMessage() . PHP_EOL; |
34 | 34 | } else { |
35 | 35 | echo $Cacheer->getMessage() . PHP_EOL; |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | $Cacheer->putCache($cacheKey, $userProfile); |
26 | 26 | |
27 | 27 | // Recuperando dados do cache |
28 | -if($Cacheer->isSuccess()){ |
|
28 | +if ($Cacheer->isSuccess()) { |
|
29 | 29 | echo "Cache Found: "; |
30 | 30 | print_r($Cacheer->getCache($cacheKey)); |
31 | 31 | } else { |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | // Mesclando os dados |
37 | 37 | $Cacheer->appendCache($cacheKey, $userProfile02); |
38 | 38 | |
39 | -if($Cacheer->isSuccess()){ |
|
39 | +if ($Cacheer->isSuccess()) { |
|
40 | 40 | echo $Cacheer->getMessage() . PHP_EOL; |
41 | 41 | print_r($Cacheer->getCache($cacheKey)); |
42 | 42 | } else { |
@@ -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(); |
@@ -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 |