@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | { |
7 | 7 | private string $type; |
8 | 8 | |
9 | - private null|float|int|string $value; |
|
9 | + private null | float | int | string $value; |
|
10 | 10 | |
11 | 11 | private ?string $cellFormula; |
12 | 12 | |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | */ |
18 | 18 | private ?bool $greaterThanOrEqual = null; |
19 | 19 | |
20 | - public function __construct(string $type, null|float|int|string $value = null, ?string $cellFormula = null) |
|
20 | + public function __construct(string $type, null | float | int | string $value = null, ?string $cellFormula = null) |
|
21 | 21 | { |
22 | 22 | $this->type = $type; |
23 | 23 | $this->value = $value; |
@@ -36,12 +36,12 @@ discard block |
||
36 | 36 | return $this; |
37 | 37 | } |
38 | 38 | |
39 | - public function getValue(): null|float|int|string |
|
39 | + public function getValue(): null | float | int | string |
|
40 | 40 | { |
41 | 41 | return $this->value; |
42 | 42 | } |
43 | 43 | |
44 | - public function setValue(null|float|int|string $value): self |
|
44 | + public function setValue(null | float | int | string $value): self |
|
45 | 45 | { |
46 | 46 | $this->value = $value; |
47 | 47 |