Passed
Pull Request — master (#4389)
by Owen
11:40
created
tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/Oct2DecTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/Bin2DecTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/Hex2DecTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.