@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | } |
30 | 30 | |
31 | 31 | #[DataProvider('providerOCT2DEC')] |
32 | - public function testDirectCallToOCT2DEC(mixed $expectedResult, bool|string $value): void |
|
32 | + public function testDirectCallToOCT2DEC(mixed $expectedResult, bool | string $value): void |
|
33 | 33 | { |
34 | 34 | $result = ConvertOctal::toDecimal($value); |
35 | 35 | self::assertSame($expectedResult, $result); |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | #[DataProvider('providerOCT2DECOds')] |
101 | - public function testOCT2DECOds(mixed $expectedResult, bool|string $value): void |
|
101 | + public function testOCT2DECOds(mixed $expectedResult, bool | string $value): void |
|
102 | 102 | { |
103 | 103 | Functions::setCompatibilityMode( |
104 | 104 | Functions::COMPATIBILITY_OPENOFFICE |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | } |
30 | 30 | |
31 | 31 | #[DataProvider('providerBIN2DEC')] |
32 | - public function testDirectCallToBIN2DEC(float|int|string $expectedResult, bool|int|string $arg1): void |
|
32 | + public function testDirectCallToBIN2DEC(float | int | string $expectedResult, bool | int | string $arg1): void |
|
33 | 33 | { |
34 | 34 | $result = ConvertBinary::toDecimal($arg1); |
35 | 35 | self::assertSame($expectedResult, $result); |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | #[DataProvider('providerBIN2DECOds')] |
101 | - public function testBIN2DECOds(float|int|string $expectedResult, bool $arg1): void |
|
101 | + public function testBIN2DECOds(float | int | string $expectedResult, bool $arg1): void |
|
102 | 102 | { |
103 | 103 | Functions::setCompatibilityMode( |
104 | 104 | Functions::COMPATIBILITY_OPENOFFICE |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | } |
30 | 30 | |
31 | 31 | #[DataProvider('providerHEX2DEC')] |
32 | - public function testDirectCallToHEX2DEC(mixed $expectedResult, bool|float|int|string $value): void |
|
32 | + public function testDirectCallToHEX2DEC(mixed $expectedResult, bool | float | int | string $value): void |
|
33 | 33 | { |
34 | 34 | $result = ConvertHex::toDecimal($value); |
35 | 35 | self::assertSame($expectedResult, $result); |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | #[DataProvider('providerHEX2DECOds')] |
101 | - public function testHEX2DECOds(mixed $expectedResult, bool|float|int|string $value): void |
|
101 | + public function testHEX2DECOds(mixed $expectedResult, bool | float | int | string $value): void |
|
102 | 102 | { |
103 | 103 | Functions::setCompatibilityMode( |
104 | 104 | Functions::COMPATIBILITY_OPENOFFICE |