@@ -64,7 +64,7 @@ |
||
64 | 64 | protected function doGet(string $key): array |
65 | 65 | { |
66 | 66 | $success = false; |
67 | - $content = apc_fetch($this->getKeyName($key), $success); |
|
67 | + $content = apc_fetch($this->getKeyName($key), $success); |
|
68 | 68 | |
69 | 69 | if (empty($content) || !$success) { |
70 | 70 | return []; |
@@ -173,7 +173,7 @@ |
||
173 | 173 | $removedList = []; |
174 | 174 | |
175 | 175 | $probability = $settings['gc_probability'] ?? 1; |
176 | - $divisor = $settings['gc_divisor'] ?? 100; |
|
176 | + $divisor = $settings['gc_divisor'] ?? 100; |
|
177 | 177 | |
178 | 178 | if (method_exists($this->driver, 'gc')) { |
179 | 179 | $removedList = $this->driver->gc($probability, $divisor); |