Passed
Branch main (f54dcc)
by Pranjal
14:16
created
Category
src/StorageEngine.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      *
42 42
      * @return array<array<int<0, max>, string>|string>
43 43
      */
44
-    public function saveRequest(string $path = '', array|Validator\AbstractValidator|null $whitelists = null): array
44
+    public function saveRequest(string $path = '', array | Validator\AbstractValidator | null $whitelists = null): array
45 45
     {
46 46
         if (function_exists('request')) {
47 47
             $uploaded = [];
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +2 added lines, -2 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',
9
+        __DIR__.'/src',
10 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.