Passed
Push — master ( 055281...135371 )
by
unknown
19:31 queued 11:35
created
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/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.
tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig/SignTest.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 SignTest extends AllSetupTeardown
10 10
 {
11 11
     #[\PHPUnit\Framework\Attributes\DataProvider('providerSIGN')]
12
-    public function testSIGN(float|int|string $expectedResult, float|int|string $value): void
12
+    public function testSIGN(float | int | string $expectedResult, float | int | string $value): 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/RoundDownTest.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 RoundDownTest extends AllSetupTeardown
10 10
 {
11 11
     #[\PHPUnit\Framework\Attributes\DataProvider('providerRoundDown')]
12
-    public function testRoundDown(float|int|string $expectedResult, float|int|string $formula): void
12
+    public function testRoundDown(float | int | string $expectedResult, float | int | string $formula): 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/CothTest.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 CothTest extends AllSetupTeardown
10 10
 {
11 11
     #[\PHPUnit\Framework\Attributes\DataProvider('providerCOTH')]
12
-    public function testCOTH(float|int|string $expectedResult, float|int|string $angle): void
12
+    public function testCOTH(float | int | string $expectedResult, float | int | string $angle): 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/CotTest.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 CotTest extends AllSetupTeardown
10 10
 {
11 11
     #[\PHPUnit\Framework\Attributes\DataProvider('providerCOT')]
12
-    public function testCOT(float|int|string $expectedResult, float|int|string $angle): void
12
+    public function testCOT(float | int | string $expectedResult, float | int | string $angle): 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/SechTest.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 SechTest extends AllSetupTeardown
10 10
 {
11 11
     #[\PHPUnit\Framework\Attributes\DataProvider('providerSECH')]
12
-    public function testSECH(float|int|string $expectedResult, float|int|string $angle): void
12
+    public function testSECH(float | int | string $expectedResult, float | int | string $angle): 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/AcotTest.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 AcotTest extends AllSetupTeardown
10 10
 {
11 11
     #[\PHPUnit\Framework\Attributes\DataProvider('providerACOT')]
12
-    public function testACOT(float|int|string $expectedResult, float|int|string $number): void
12
+    public function testACOT(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.