Completed
Push — master ( 7c5d51...9a27cd )
by Milan
34s
created
src/Caching/Cache.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 	}
29 29
 
30 30
 
31
-	public function set(string $key, mixed $value, \DateInterval|int|null $ttl = null): bool
31
+	public function set(string $key, mixed $value, \DateInterval | int | null $ttl = null): bool
32 32
 	{
33 33
 		return (bool) file_put_contents($this->file($key), $value);
34 34
 	}
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 	/**
60 60
 	 * @param iterable<mixed> $values
61 61
 	 */
62
-	public function setMultiple(iterable $values, \DateInterval|int|null $ttl = null): bool
62
+	public function setMultiple(iterable $values, \DateInterval | int | null $ttl = null): bool
63 63
 	{
64 64
 		throw new \RuntimeException('not implemented');
65 65
 	}
Please login to merge, or discard this patch.