Passed
Push — main ( 7c5bad...45a344 )
by Pranjal
02:38
created
src/Adapters/Session/DatabaseHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,10 +6,10 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.