@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | { |
| 29 | 29 | public string $comment = ''; |
| 30 | 30 | |
| 31 | - public int|float|string|Expression|null $default = null; |
|
| 31 | + public int | float | string | Expression | null $default = null; |
|
| 32 | 32 | |
| 33 | 33 | public bool $nullable = false; |
| 34 | 34 | |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * |
| 59 | 59 | * @return $this |
| 60 | 60 | */ |
| 61 | - public function default(int|float|string|Expression|null $default): static |
|
| 61 | + public function default(int | float | string | Expression | null $default): static |
|
| 62 | 62 | { |
| 63 | 63 | $this->default = $default; |
| 64 | 64 | |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | /** |
| 101 | 101 | * @return int|string|Expression|null |
| 102 | 102 | */ |
| 103 | - public function getDefault(): int|string|Expression|null |
|
| 103 | + public function getDefault(): int | string | Expression | null |
|
| 104 | 104 | { |
| 105 | 105 | return $this->default; |
| 106 | 106 | } |