@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | } |
39 | 39 | |
40 | 40 | |
41 | - public function flush(string|Driver\Driver $driver, \DateTimeInterface $date = null): void |
|
41 | + public function flush(string | Driver\Driver $driver, \DateTimeInterface $date = null): void |
|
42 | 42 | { |
43 | 43 | $this->cache->delete( |
44 | 44 | self::createKey(is_string($driver) ? $driver : $driver::class, $date), |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | { |
120 | 120 | $suffix = $date === null ? '' : $date->format('.Y-m-d'); |
121 | 121 | |
122 | - return self::driverName($driver) . $suffix; |
|
122 | + return self::driverName($driver).$suffix; |
|
123 | 123 | } |
124 | 124 | |
125 | 125 |