@@ -104,7 +104,7 @@ |
||
104 | 104 | } |
105 | 105 | |
106 | 106 | #[\Override] |
107 | - public function gc(int $maxlifetime): int|false |
|
107 | + public function gc(int $maxlifetime): int | false |
|
108 | 108 | { |
109 | 109 | $this->gcCalled = true; |
110 | 110 |
@@ -31,7 +31,7 @@ |
||
31 | 31 | * @param string|array<mixed> $data |
32 | 32 | * @param array<mixed> $headers |
33 | 33 | */ |
34 | - public function json(string|array $data, array $headers = []): Response |
|
34 | + public function json(string | array $data, array $headers = []): Response |
|
35 | 35 | { |
36 | 36 | if (is_array($data)) { |
37 | 37 | $data = \Safe\json_encode($data); |
@@ -6,10 +6,10 @@ |
||
6 | 6 | |
7 | 7 | return RectorConfig::configure() |
8 | 8 | ->withPaths([ |
9 | - __DIR__ . '/src', |
|
10 | - __DIR__ . '/tests', |
|
9 | + __DIR__.'/src', |
|
10 | + __DIR__.'/tests', |
|
11 | 11 | ]) |
12 | 12 | // uncomment to reach your current PHP version |
13 | 13 | ->withPhpSets(php83:true) |
14 | 14 | ->withAttributesSets() |
15 | - ->withPreparedSets(deadCode:true,typeDeclarations:true,codeQuality:true); |
|
15 | + ->withPreparedSets(deadCode:true, typeDeclarations:true, codeQuality:true); |