@@ -34,7 +34,7 @@ |
||
| 34 | 34 | */ |
| 35 | 35 | class SlugFactory implements SlugFactoryInterface |
| 36 | 36 | { |
| 37 | - private Transliterator|null $transliterator = null; |
|
| 37 | + private Transliterator | null $transliterator = null; |
|
| 38 | 38 | |
| 39 | 39 | public function __construct(private PhpService $php_service) |
| 40 | 40 | { |
@@ -94,7 +94,7 @@ |
||
| 94 | 94 | return $response; |
| 95 | 95 | } |
| 96 | 96 | |
| 97 | - protected function compressionMethod(RequestInterface $request): string|null |
|
| 97 | + protected function compressionMethod(RequestInterface $request): string | null |
|
| 98 | 98 | { |
| 99 | 99 | $accept_encoding = strtolower($request->getHeaderLine('accept-encoding')); |
| 100 | 100 | $zlib_available = $this->php_service->extensionLoaded(extension: 'zlib'); |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | |
| 38 | 38 | public function __construct( |
| 39 | 39 | private PhpService $php_service, |
| 40 | - float|null $start_time = null, |
|
| 40 | + float | null $start_time = null, |
|
| 41 | 41 | ) { |
| 42 | 42 | $this->start_time = $start_time ?? Registry::timeFactory()->now(); |
| 43 | 43 | } |