Passed
Push — dbal ( 23f922...9cad68 )
by Greg
15:01
created
app/DB/Column.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
         private readonly bool $unsigned = false,
38 38
         private readonly bool $fixed = false,
39 39
         private readonly bool $nullable = false,
40
-        private readonly float|int|string|null $default = null,
40
+        private readonly float | int | string | null $default = null,
41 41
         private readonly bool $autoincrement = false,
42
-        private readonly string|null $collation = null,
42
+        private readonly string | null $collation = null,
43 43
     ) {
44 44
     }
45 45
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         );
61 61
     }
62 62
 
63
-    public function default(float|int|string $default): self
63
+    public function default(float | int | string $default): self
64 64
     {
65 65
         return new self(
66 66
             name: $this->name,
Please login to merge, or discard this patch.