Passed
Push — master ( 3e93d4...2d1f4e )
by
unknown
24:41 queued 16:58
created
tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/DeltaTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 class DeltaTest extends TestCase
15 15
 {
16 16
     #[\PHPUnit\Framework\Attributes\DataProvider('providerDELTA')]
17
-    public function testDirectCallToDELTA(mixed $expectedResult, bool|float|int|string $arg1, null|bool|float|int|string $arg2 = null): void
17
+    public function testDirectCallToDELTA(mixed $expectedResult, bool | float | int | string $arg1, null | bool | float | int | string $arg2 = null): void
18 18
     {
19 19
         $result = ($arg2 === null) ? Compare::delta($arg1) : Compare::delta($arg1, $arg2);
20 20
         self::assertSame($expectedResult, $result);
Please login to merge, or discard this patch.
PhpSpreadsheetTests/Calculation/Functions/Engineering/BitLShiftTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 class BitLShiftTest extends TestCase
15 15
 {
16 16
     #[\PHPUnit\Framework\Attributes\DataProvider('providerBITLSHIFT')]
17
-    public function testDirectCallToBITLSHIFT(float|int|string $expectedResult, null|bool|int|float|string $arg1, null|bool|int|float|string $arg2): void
17
+    public function testDirectCallToBITLSHIFT(float | int | string $expectedResult, null | bool | int | float | string $arg1, null | bool | int | float | string $arg2): void
18 18
     {
19 19
         $result = BitWise::BITLSHIFT($arg1, $arg2);
20 20
         self::assertSame($expectedResult, $result);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/BitXorTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,14 +14,14 @@  discard block
 block discarded – undo
14 14
 class BitXorTest extends TestCase
15 15
 {
16 16
     #[\PHPUnit\Framework\Attributes\DataProvider('providerBITXOR')]
17
-    public function testDirectCallToBITXOR(float|int|string $expectedResult, null|bool|int|float|string $arg1, null|bool|int|float|string $arg2): void
17
+    public function testDirectCallToBITXOR(float | int | string $expectedResult, null | bool | int | float | string $arg1, null | bool | int | float | string $arg2): void
18 18
     {
19 19
         $result = BitWise::BITXOR($arg1, $arg2);
20 20
         self::assertSame($expectedResult, $result);
21 21
     }
22 22
 
23 23
     #[\PHPUnit\Framework\Attributes\DataProvider('providerBITXOR')]
24
-    public function testBITXORAsFormula(float|int|string $expectedResult, mixed ...$args): void
24
+    public function testBITXORAsFormula(float | int | string $expectedResult, mixed ...$args): void
25 25
     {
26 26
         $arguments = new FormulaArguments(...$args);
27 27
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     }
34 34
 
35 35
     #[\PHPUnit\Framework\Attributes\DataProvider('providerBITXOR')]
36
-    public function testBITXORInWorksheet(float|int|string $expectedResult, mixed ...$args): void
36
+    public function testBITXORInWorksheet(float | int | string $expectedResult, mixed ...$args): void
37 37
     {
38 38
         $arguments = new FormulaArguments(...$args);
39 39
 
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/BitAndTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,14 +14,14 @@  discard block
 block discarded – undo
14 14
 class BitAndTest extends TestCase
15 15
 {
16 16
     #[\PHPUnit\Framework\Attributes\DataProvider('providerBITAND')]
17
-    public function testDirectCallToBITAND(float|int|string $expectedResult, null|bool|int|float|string $arg1, null|bool|int|float|string $arg2): void
17
+    public function testDirectCallToBITAND(float | int | string $expectedResult, null | bool | int | float | string $arg1, null | bool | int | float | string $arg2): void
18 18
     {
19 19
         $result = BitWise::BITAND($arg1, $arg2);
20 20
         self::assertSame($expectedResult, $result);
21 21
     }
22 22
 
23 23
     #[\PHPUnit\Framework\Attributes\DataProvider('providerBITAND')]
24
-    public function testBITANDAsFormula(float|int|string $expectedResult, mixed ...$args): void
24
+    public function testBITANDAsFormula(float | int | string $expectedResult, mixed ...$args): void
25 25
     {
26 26
         $arguments = new FormulaArguments(...$args);
27 27
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     }
34 34
 
35 35
     #[\PHPUnit\Framework\Attributes\DataProvider('providerBITAND')]
36
-    public function testBITANDInWorksheet(float|int|string $expectedResult, mixed ...$args): void
36
+    public function testBITANDInWorksheet(float | int | string $expectedResult, mixed ...$args): void
37 37
     {
38 38
         $arguments = new FormulaArguments(...$args);
39 39
 
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/ImPowerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     }
27 27
 
28 28
     #[\PHPUnit\Framework\Attributes\DataProvider('providerIMPOWER')]
29
-    public function testDirectCallToIMPOWER(float|int|string $expectedResult, string $arg1, float|int|string $arg2): void
29
+    public function testDirectCallToIMPOWER(float | int | string $expectedResult, string $arg1, float | int | string $arg2): void
30 30
     {
31 31
         $result = ComplexFunctions::IMPOWER($arg1, $arg2);
32 32
         self::assertTrue(
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/ImRealTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     }
23 23
 
24 24
     #[\PHPUnit\Framework\Attributes\DataProvider('providerIMREAL')]
25
-    public function testDirectCallToIMREAL(float|int|string $expectedResult, float|int|string $arg): void
25
+    public function testDirectCallToIMREAL(float | int | string $expectedResult, float | int | string $arg): void
26 26
     {
27 27
         $result = Complex::IMREAL((string) $arg);
28 28
         self::assertEqualsWithDelta($expectedResult, $result, self::COMPLEX_PRECISION);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/Bin2OctTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     }
29 29
 
30 30
     #[\PHPUnit\Framework\Attributes\DataProvider('providerBIN2OCT')]
31
-    public function testDirectCallToBIN2OCT(mixed $expectedResult, bool|float|int|string $value, null|float|int|string $digits = null): void
31
+    public function testDirectCallToBIN2OCT(mixed $expectedResult, bool | float | int | string $value, null | float | int | string $digits = null): void
32 32
     {
33 33
         $result = ($digits === null) ? ConvertBinary::toOctal($value) : ConvertBinary::toOctal($value, $digits);
34 34
         self::assertSame($expectedResult, $result);
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     }
103 103
 
104 104
     #[\PHPUnit\Framework\Attributes\DataProvider('providerBIN2OCTOds')]
105
-    public function testBIN2OCTOds(mixed $expectedResult, bool|float|int|string $value, ?int $digits = null): void
105
+    public function testBIN2OCTOds(mixed $expectedResult, bool | float | int | string $value, ?int $digits = null): void
106 106
     {
107 107
         Functions::setCompatibilityMode(Functions::COMPATIBILITY_OPENOFFICE);
108 108
 
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig/AcothTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 class AcothTest extends AllSetupTeardown
10 10
 {
11 11
     #[\PHPUnit\Framework\Attributes\DataProvider('providerACOTH')]
12
-    public function testACOTH(float|int|string $expectedResult, float|int|string $number): void
12
+    public function testACOTH(float | int | string $expectedResult, float | int | string $number): void
13 13
     {
14 14
         $this->mightHaveException($expectedResult);
15 15
         $sheet = $this->getSheet();
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig/SequenceTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      * @param mixed[]|string $expectedResult
14 14
      */
15 15
     #[\PHPUnit\Framework\Attributes\DataProvider('providerSEQUENCE')]
16
-    public function testSEQUENCE(array $arguments, array|string $expectedResult): void
16
+    public function testSEQUENCE(array $arguments, array | string $expectedResult): void
17 17
     {
18 18
         if (count($arguments) === 0) {
19 19
             $result = MatrixFunctions::sequence();
Please login to merge, or discard this patch.