@@ -36,7 +36,7 @@ |
||
36 | 36 | * true = Activé, prend en compte tous les paramètres de requête. |
37 | 37 | * Veuillez noter que cela peut entraîner de nombreux fichiers de cache générés encore et encore pour la même page. |
38 | 38 | * array('q') = Activé, mais ne prend en compte que la liste spécifiée de paramètres de requête. |
39 | - */ |
|
39 | + */ |
|
40 | 40 | public function __construct(private CacheInterface $cache, private array|bool $cacheQueryString = false) |
41 | 41 | { |
42 | 42 | } |
@@ -182,9 +182,9 @@ |
||
182 | 182 | $ttl = null; |
183 | 183 | } |
184 | 184 | |
185 | - if (null !== $value = $this->get($key)) { |
|
186 | - return $value; |
|
187 | - } |
|
185 | + if (null !== $value = $this->get($key)) { |
|
186 | + return $value; |
|
187 | + } |
|
188 | 188 | |
189 | 189 | $this->set($key, $value = $callable(), $ttl); |
190 | 190 |
@@ -100,8 +100,8 @@ discard block |
||
100 | 100 | |
101 | 101 | /** |
102 | 102 | * Tente de créer le gestionnaire de cache souhaité |
103 | - * |
|
104 | - * @return BaseHandler |
|
103 | + * |
|
104 | + * @return BaseHandler |
|
105 | 105 | */ |
106 | 106 | protected function factory(): CacheInterface |
107 | 107 | { |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | * |
252 | 252 | * ``` |
253 | 253 | * $cache->read('my_data'); |
254 | - * ``` |
|
254 | + * ``` |
|
255 | 255 | */ |
256 | 256 | public function read(string $key, mixed $default = null): mixed |
257 | 257 | { |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | * |
291 | 291 | * ``` |
292 | 292 | * $cache->readMany(['my_data_1', 'my_data_2']); |
293 | - * ``` |
|
293 | + * ``` |
|
294 | 294 | */ |
295 | 295 | public function readMany(iterable $keys, mixed $default = null): iterable |
296 | 296 | { |
@@ -529,14 +529,14 @@ discard block |
||
529 | 529 | return $this->factory()->has($key); |
530 | 530 | } |
531 | 531 | |
532 | - /** |
|
533 | - * Récupérez un élément du cache et supprimez-le. |
|
534 | - * |
|
535 | - * @template TCacheValue |
|
536 | - * |
|
537 | - * @param TCacheValue|(\Closure(): TCacheValue) $default |
|
538 | - * @return (TCacheValue is null ? mixed : TCacheValue) |
|
539 | - */ |
|
532 | + /** |
|
533 | + * Récupérez un élément du cache et supprimez-le. |
|
534 | + * |
|
535 | + * @template TCacheValue |
|
536 | + * |
|
537 | + * @param TCacheValue|(\Closure(): TCacheValue) $default |
|
538 | + * @return (TCacheValue is null ? mixed : TCacheValue) |
|
539 | + */ |
|
540 | 540 | public function pull(string $key, $default = null) |
541 | 541 | { |
542 | 542 | return Helpers::tap($this->read($key, $default), function () use ($key) { |
@@ -544,14 +544,14 @@ discard block |
||
544 | 544 | }); |
545 | 545 | } |
546 | 546 | |
547 | - /** |
|
548 | - * Récupérez un élément du cache et supprimez-le. |
|
549 | - * |
|
550 | - * @template TCacheValue |
|
551 | - * |
|
552 | - * @param TCacheValue|(\Closure(): TCacheValue) $default |
|
553 | - * @return (TCacheValue is null ? mixed : TCacheValue) |
|
554 | - */ |
|
547 | + /** |
|
548 | + * Récupérez un élément du cache et supprimez-le. |
|
549 | + * |
|
550 | + * @template TCacheValue |
|
551 | + * |
|
552 | + * @param TCacheValue|(\Closure(): TCacheValue) $default |
|
553 | + * @return (TCacheValue is null ? mixed : TCacheValue) |
|
554 | + */ |
|
555 | 555 | public function pullMany(iterable $keys, $default = null) |
556 | 556 | { |
557 | 557 | return Helpers::tap($this->readMany($keys, $default), function () use ($keys) { |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | |
16 | 16 | final class FileVarExportHandler extends BaseHandler |
17 | 17 | { |
18 | - private string $path = FRAMEWORK_STORAGE_PATH . 'cache'; |
|
18 | + private string $path = FRAMEWORK_STORAGE_PATH . 'cache'; |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * {@inheritDoc} |
@@ -35,8 +35,8 @@ discard block |
||
35 | 35 | |
36 | 36 | /** |
37 | 37 | * {@inheritDoc} |
38 | - * |
|
39 | - * @param array|bool|float|int|object|string|null $value |
|
38 | + * |
|
39 | + * @param array|bool|float|int|object|string|null $value |
|
40 | 40 | */ |
41 | 41 | public function set(string $key, mixed $value, null|DateInterval|int $ttl = null): bool |
42 | 42 | { |
@@ -59,13 +59,13 @@ discard block |
||
59 | 59 | |
60 | 60 | /** |
61 | 61 | * {@inheritDoc} |
62 | - * |
|
63 | - * @return array|bool|float|int|object|string|null |
|
62 | + * |
|
63 | + * @return array|bool|float|int|object|string|null |
|
64 | 64 | */ |
65 | 65 | public function get(string $key, mixed $default = null): mixed |
66 | 66 | { |
67 | - return @include $this->path . "/{$key}"; |
|
68 | - } |
|
67 | + return @include $this->path . "/{$key}"; |
|
68 | + } |
|
69 | 69 | |
70 | 70 | /** |
71 | 71 | * {@inheritDoc} |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | */ |
97 | 97 | public function delete(string $key): bool |
98 | 98 | { |
99 | - return @unlink($this->path . "/{$key}"); |
|
99 | + return @unlink($this->path . "/{$key}"); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | /** |
@@ -112,21 +112,21 @@ discard block |
||
112 | 112 | */ |
113 | 113 | public function clear(): bool |
114 | 114 | { |
115 | - if (! is_dir($this->path)) { |
|
116 | - return false; |
|
117 | - } |
|
118 | - |
|
119 | - $files = glob($this->path . '/*'); |
|
120 | - foreach ($files as $file) { |
|
121 | - if (is_file($file)) { |
|
122 | - unlink($file); |
|
123 | - } elseif (is_dir($file)) { |
|
124 | - $this->clear($file); |
|
125 | - } |
|
126 | - } |
|
127 | - |
|
128 | - return rmdir($this->path); |
|
129 | - } |
|
115 | + if (! is_dir($this->path)) { |
|
116 | + return false; |
|
117 | + } |
|
118 | + |
|
119 | + $files = glob($this->path . '/*'); |
|
120 | + foreach ($files as $file) { |
|
121 | + if (is_file($file)) { |
|
122 | + unlink($file); |
|
123 | + } elseif (is_dir($file)) { |
|
124 | + $this->clear($file); |
|
125 | + } |
|
126 | + } |
|
127 | + |
|
128 | + return rmdir($this->path); |
|
129 | + } |
|
130 | 130 | |
131 | 131 | /** |
132 | 132 | * {@inheritDoc} |