Passed
Push — dbal ( 92f26f...aec129 )
by Greg
06:59
created
app/DB/Column.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
         private readonly bool $unsigned = false,
36 36
         private readonly bool $fixed = false,
37 37
         private readonly bool $nullable = false,
38
-        private readonly float|int|string|null $default = null,
38
+        private readonly float | int | string | null $default = null,
39 39
         private readonly bool $autoincrement = false,
40
-        private readonly string|null $collation = null,
40
+        private readonly string | null $collation = null,
41 41
     ) {
42 42
         parent::__construct(
43 43
             name: $name,
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         );
74 74
     }
75 75
 
76
-    public function default(float|int|string $default): self
76
+    public function default(float | int | string $default): self
77 77
     {
78 78
         return new self(
79 79
             name: $this->name,
Please login to merge, or discard this patch.
app/DB/Index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     /**
30 30
      * @param array<int,string> $columns
31 31
      */
32
-    public function __construct(private readonly array $columns, string|null $name = null)
32
+    public function __construct(private readonly array $columns, string | null $name = null)
33 33
     {
34 34
         parent::__construct(name: $name, columns: $this->columns);
35 35
     }
Please login to merge, or discard this patch.
app/DB/UniqueIndex.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * @param array<int,string> $columns
34 34
      */
35
-    public function __construct(private readonly array $columns, string|null $name = null)
35
+    public function __construct(private readonly array $columns, string | null $name = null)
36 36
     {
37 37
         parent::__construct(name: $name, columns: $this->columns, isUnique: true);
38 38
     }
Please login to merge, or discard this patch.
app/DB/Table.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@  discard block
 block discarded – undo
45 45
     /** @var array<int,ForeignKey> */
46 46
     private array $foreign_keys;
47 47
 
48
-    public function __construct(private readonly string $name, Column|Index|UniqueIndex|ForeignKey|PrimaryKey ...$components)
48
+    public function __construct(private readonly string $name, Column | Index | UniqueIndex | ForeignKey | PrimaryKey ...$components)
49 49
     {
50
-        $column_filter       = static fn (Column|Index|UniqueIndex|ForeignKey|PrimaryKey $component): bool => $component instanceof Column;
51
-        $foreign_key_filter  = static fn (Column|Index|UniqueIndex|ForeignKey|PrimaryKey $component): bool => $component instanceof ForeignKey;
52
-        $index_filter        = static fn (Column|Index|UniqueIndex|ForeignKey|PrimaryKey $component): bool => $component instanceof Index;
53
-        $primary_key_filter  = static fn (Column|Index|UniqueIndex|ForeignKey|PrimaryKey $component): bool => $component instanceof PrimaryKey;
54
-        $unique_index_filter = static fn (Column|Index|UniqueIndex|ForeignKey|PrimaryKey $component): bool => $component instanceof UniqueIndex;
50
+        $column_filter       = static fn (Column | Index | UniqueIndex | ForeignKey | PrimaryKey $component): bool => $component instanceof Column;
51
+        $foreign_key_filter  = static fn (Column | Index | UniqueIndex | ForeignKey | PrimaryKey $component): bool => $component instanceof ForeignKey;
52
+        $index_filter        = static fn (Column | Index | UniqueIndex | ForeignKey | PrimaryKey $component): bool => $component instanceof Index;
53
+        $primary_key_filter  = static fn (Column | Index | UniqueIndex | ForeignKey | PrimaryKey $component): bool => $component instanceof PrimaryKey;
54
+        $unique_index_filter = static fn (Column | Index | UniqueIndex | ForeignKey | PrimaryKey $component): bool => $component instanceof UniqueIndex;
55 55
 
56 56
         $this->columns        = array_values(array: array_filter(array: $components, callback: $column_filter));
57 57
         $this->foreign_keys   = array_values(array: array_filter(array: $components, callback: $foreign_key_filter));
@@ -73,19 +73,19 @@  discard block
 block discarded – undo
73 73
         );
74 74
     }
75 75
 
76
-    private function namedIndex(Index &$index, int|string $n): void {
76
+    private function namedIndex(Index & $index, int | string $n): void {
77 77
         $n     = 1 + (int) $n;
78 78
         $name  = DB::prefix($this->name . '_ix' . $n);
79 79
         $index = $index->name($name);
80 80
     }
81 81
 
82
-    private function namedUniqueIndex(UniqueIndex &$unique_index, int|string $n): void {
82
+    private function namedUniqueIndex(UniqueIndex & $unique_index, int | string $n): void {
83 83
         $n            = 1 + (int) $n;
84 84
         $name         = DB::prefix($this->name . '_ux' . $n);
85 85
         $unique_index = $unique_index->name($name);
86 86
     }
87 87
 
88
-    private function namedForeignKey(ForeignKey &$foreign_key, int|string $n): void {
88
+    private function namedForeignKey(ForeignKey & $foreign_key, int | string $n): void {
89 89
         $n           = 1 + (int) $n;
90 90
         $name        = DB::prefix($this->name . '_fk' . $n);
91 91
         $foreign_key = $foreign_key->name($name);
Please login to merge, or discard this patch.