Passed
Push — dbal ( 887ebd...259ca9 )
by Greg
06:44
created
app/Factories/SlugFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
app/Http/Middleware/CompressResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
app/Services/TimeoutService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.