@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | /** |
48 | 48 | * @dataProvider providerCreationTime |
49 | 49 | */ |
50 | - public function testSetCreated(null|int $expectedCreationTime, null|int|string $created): void |
|
50 | + public function testSetCreated(null | int $expectedCreationTime, null | int | string $created): void |
|
51 | 51 | { |
52 | 52 | $expectedCreationTime = $expectedCreationTime ?? $this->startTime; |
53 | 53 | |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | /** |
77 | 77 | * @dataProvider providerModifiedTime |
78 | 78 | */ |
79 | - public function testSetModified(mixed $expectedModifiedTime, null|int|string $modified): void |
|
79 | + public function testSetModified(mixed $expectedModifiedTime, null | int | string $modified): void |
|
80 | 80 | { |
81 | 81 | $expectedModifiedTime = $expectedModifiedTime ?? $this->startTime; |
82 | 82 | |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | /** |
154 | 154 | * @dataProvider providerCustomProperties |
155 | 155 | */ |
156 | - public function testSetCustomProperties(mixed $expectedType, mixed $expectedValue, string $propertyName, null|bool|float|int|string $propertyValue, ?string $propertyType = null): void |
|
156 | + public function testSetCustomProperties(mixed $expectedType, mixed $expectedValue, string $propertyName, null | bool | float | int | string $propertyValue, ?string $propertyType = null): void |
|
157 | 157 | { |
158 | 158 | if ($propertyType === null) { |
159 | 159 | $this->properties->setCustomProperty($propertyName, $propertyValue); |
@@ -84,7 +84,7 @@ |
||
84 | 84 | /** |
85 | 85 | * @dataProvider providerCreateFromColumnRowException |
86 | 86 | */ |
87 | - public function testCreateFromColumnRowException(int|string $columnId, int|string $rowId): void |
|
87 | + public function testCreateFromColumnRowException(int | string $columnId, int | string $rowId): void |
|
88 | 88 | { |
89 | 89 | $this->expectException(Exception::class); |
90 | 90 | $this->expectExceptionMessage('Row and Column Ids must be positive integer values'); |
@@ -28,7 +28,7 @@ |
||
28 | 28 | $this->formatBlocks = array_map([$this, 'mapFormatBlocks'], $formatBlocks); |
29 | 29 | } |
30 | 30 | |
31 | - private function mapFormatBlocks(DateTimeWizard|string $value): string |
|
31 | + private function mapFormatBlocks(DateTimeWizard | string $value): string |
|
32 | 32 | { |
33 | 33 | // Any date masking codes are returned as lower case values |
34 | 34 | if ($value instanceof DateTimeWizard) { |
@@ -252,7 +252,7 @@ |
||
252 | 252 | * |
253 | 253 | * @param string $name Attribute Name |
254 | 254 | */ |
255 | - public function getAttribute(string $name): null|float|int|string |
|
255 | + public function getAttribute(string $name): null | float | int | string |
|
256 | 256 | { |
257 | 257 | if (isset($this->attributes[$name])) { |
258 | 258 | return $this->attributes[$name]; |
@@ -70,7 +70,7 @@ |
||
70 | 70 | } |
71 | 71 | |
72 | 72 | /** @param null|bool|float|int|string $value value to be wrapped */ |
73 | - protected function wrapValue(mixed $value, string $operandValueType): float|int|string |
|
73 | + protected function wrapValue(mixed $value, string $operandValueType): float | int | string |
|
74 | 74 | { |
75 | 75 | if (!is_numeric($value) && !is_bool($value) && null !== $value) { |
76 | 76 | if ($operandValueType === Wizard::VALUE_TYPE_LITERAL) { |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | * If an array of numbers is passed as an argument, then the returned result will also be an array |
24 | 24 | * with the same dimensions |
25 | 25 | */ |
26 | - public static function mod(mixed $dividend, mixed $divisor): array|string|float |
|
26 | + public static function mod(mixed $dividend, mixed $divisor): array | string | float |
|
27 | 27 | { |
28 | 28 | if (is_array($dividend) || is_array($divisor)) { |
29 | 29 | return self::evaluateArrayArguments([self::class, __FUNCTION__], $dividend, $divisor); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * If an array of numbers is passed as an argument, then the returned result will also be an array |
60 | 60 | * with the same dimensions |
61 | 61 | */ |
62 | - public static function power(null|array|bool|float|int|string $x, null|array|bool|float|int|string $y): array|float|int|string |
|
62 | + public static function power(null | array | bool | float | int | string $x, null | array | bool | float | int | string $y): array | float | int | string |
|
63 | 63 | { |
64 | 64 | if (is_array($x) || is_array($y)) { |
65 | 65 | return self::evaluateArrayArguments([self::class, __FUNCTION__], $x, $y); |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | * |
97 | 97 | * @param mixed ...$args Data values |
98 | 98 | */ |
99 | - public static function product(mixed ...$args): string|float |
|
99 | + public static function product(mixed ...$args): string | float |
|
100 | 100 | { |
101 | 101 | $args = array_filter( |
102 | 102 | Functions::flattenArray($args), |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | * @return array|int|string If an array of numbers is passed as an argument, then the returned result will also be an array |
137 | 137 | * with the same dimensions |
138 | 138 | */ |
139 | - public static function quotient(mixed $numerator, mixed $denominator): array|string|int |
|
139 | + public static function quotient(mixed $numerator, mixed $denominator): array | string | int |
|
140 | 140 | { |
141 | 141 | if (is_array($numerator) || is_array($denominator)) { |
142 | 142 | return self::evaluateArrayArguments([self::class, __FUNCTION__], $numerator, $denominator); |
@@ -282,7 +282,7 @@ |
||
282 | 282 | return $dataBar; |
283 | 283 | } |
284 | 284 | |
285 | - private function readColorScale(SimpleXMLElement|stdClass $cfRule): ConditionalColorScale |
|
285 | + private function readColorScale(SimpleXMLElement | stdClass $cfRule): ConditionalColorScale |
|
286 | 286 | { |
287 | 287 | $colorScale = new ConditionalColorScale(); |
288 | 288 | $count = count($cfRule->colorScale->cfvo); |
@@ -33,7 +33,7 @@ |
||
33 | 33 | /** |
34 | 34 | * @dataProvider providerGetFunctions |
35 | 35 | */ |
36 | - public function testGetFunctions(array|string $functionCall): void |
|
36 | + public function testGetFunctions(array | string $functionCall): void |
|
37 | 37 | { |
38 | 38 | self::assertIsCallable($functionCall); |
39 | 39 | } |
@@ -158,7 +158,7 @@ |
||
158 | 158 | /** |
159 | 159 | * @param AddressRange<CellAddress>|array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int}|string $fullRange |
160 | 160 | */ |
161 | - public function xtestSetRangeValidRange(string|array|AddressRange $fullRange, string $actualRange): void |
|
161 | + public function xtestSetRangeValidRange(string | array | AddressRange $fullRange, string $actualRange): void |
|
162 | 162 | { |
163 | 163 | $table = new Table(self::INITIAL_RANGE); |
164 | 164 |