Passed
Pull Request — master (#73)
by Adrien
02:19
created
src/Attribute/Field.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      */
22 22
     public array $args = [];
23 23
 
24
-    public null|string|Type $type = null;
24
+    public null | string | Type $type = null;
25 25
 
26 26
     /**
27 27
      * @param null|string $name Can be used to alias the field
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function __construct(
31 31
         public ?string $name = null,
32
-        null|string $type = null,
32
+        null | string $type = null,
33 33
         public ?string $description = null,
34 34
     ) {
35 35
         $this->type = $type;
Please login to merge, or discard this patch.