@@ -62,14 +62,14 @@ |
||
62 | 62 | return array_key_exists($key, $this->cache); |
63 | 63 | } |
64 | 64 | |
65 | - public function set(string $key, mixed $value, null|int|DateInterval $ttl = null): bool |
|
65 | + public function set(string $key, mixed $value, null | int | DateInterval $ttl = null): bool |
|
66 | 66 | { |
67 | 67 | $this->cache[$key] = $value; |
68 | 68 | |
69 | 69 | return true; |
70 | 70 | } |
71 | 71 | |
72 | - public function setMultiple(iterable $values, null|int|DateInterval $ttl = null): bool |
|
72 | + public function setMultiple(iterable $values, null | int | DateInterval $ttl = null): bool |
|
73 | 73 | { |
74 | 74 | foreach ($values as $key => $value) { |
75 | 75 | $this->set($key, $value); |