@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | /** |
| 19 | 19 | * Dossier de stockage des fichiers mis en cache. |
| 20 | 20 | */ |
| 21 | - private string $path; |
|
| 21 | + private string $path; |
|
| 22 | 22 | |
| 23 | 23 | /** |
| 24 | 24 | * Constructeur |
@@ -54,8 +54,8 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | /** |
| 56 | 56 | * {@inheritDoc} |
| 57 | - * |
|
| 58 | - * @param array|bool|float|int|object|string|null $value |
|
| 57 | + * |
|
| 58 | + * @param array|bool|float|int|object|string|null $value |
|
| 59 | 59 | */ |
| 60 | 60 | public function set(string $key, mixed $value, null|DateInterval|int $ttl = null): bool |
| 61 | 61 | { |
@@ -78,13 +78,13 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | /** |
| 80 | 80 | * {@inheritDoc} |
| 81 | - * |
|
| 82 | - * @return array|bool|float|int|object|string|null |
|
| 81 | + * |
|
| 82 | + * @return array|bool|float|int|object|string|null |
|
| 83 | 83 | */ |
| 84 | 84 | public function get(string $key, mixed $default = null): mixed |
| 85 | 85 | { |
| 86 | - return @include $this->path . "/{$key}"; |
|
| 87 | - } |
|
| 86 | + return @include $this->path . "/{$key}"; |
|
| 87 | + } |
|
| 88 | 88 | |
| 89 | 89 | /** |
| 90 | 90 | * {@inheritDoc} |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | */ |
| 116 | 116 | public function delete(string $key): bool |
| 117 | 117 | { |
| 118 | - return @unlink($this->path . "/{$key}"); |
|
| 118 | + return @unlink($this->path . "/{$key}"); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | /** |
@@ -131,21 +131,21 @@ discard block |
||
| 131 | 131 | */ |
| 132 | 132 | public function clear(): bool |
| 133 | 133 | { |
| 134 | - if (! is_dir($this->path)) { |
|
| 135 | - return false; |
|
| 136 | - } |
|
| 137 | - |
|
| 138 | - $files = glob($this->path . '/*'); |
|
| 139 | - foreach ($files as $file) { |
|
| 140 | - if (is_file($file)) { |
|
| 141 | - unlink($file); |
|
| 142 | - } elseif (is_dir($file)) { |
|
| 143 | - $this->clear($file); |
|
| 144 | - } |
|
| 145 | - } |
|
| 146 | - |
|
| 147 | - return rmdir($this->path); |
|
| 148 | - } |
|
| 134 | + if (! is_dir($this->path)) { |
|
| 135 | + return false; |
|
| 136 | + } |
|
| 137 | + |
|
| 138 | + $files = glob($this->path . '/*'); |
|
| 139 | + foreach ($files as $file) { |
|
| 140 | + if (is_file($file)) { |
|
| 141 | + unlink($file); |
|
| 142 | + } elseif (is_dir($file)) { |
|
| 143 | + $this->clear($file); |
|
| 144 | + } |
|
| 145 | + } |
|
| 146 | + |
|
| 147 | + return rmdir($this->path); |
|
| 148 | + } |
|
| 149 | 149 | |
| 150 | 150 | /** |
| 151 | 151 | * {@inheritDoc} |