Passed
Push — master ( e78bca...f65b0a )
by
unknown
14:57 queued 07:09
created
tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/ImCschTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 class ImCschTest extends ComplexAssert
16 16
 {
17 17
     #[DataProvider('providerIMCSCH')]
18
-    public function testDirectCallToIMCSCH(float|string $expectedResult, string $arg): void
18
+    public function testDirectCallToIMCSCH(float | string $expectedResult, string $arg): void
19 19
     {
20 20
         $result = ComplexFunctions::IMCSCH($arg);
21 21
         $this->assertComplexEquals($expectedResult, $result);
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
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 class ImPowerTest extends ComplexAssert
16 16
 {
17 17
     #[DataProvider('providerIMPOWER')]
18
-    public function testDirectCallToIMPOWER(float|int|string $expectedResult, string $arg1, float|int|string $arg2): void
18
+    public function testDirectCallToIMPOWER(float | int | string $expectedResult, string $arg1, float | int | string $arg2): void
19 19
     {
20 20
         $result = ComplexFunctions::IMPOWER($arg1, $arg2);
21 21
         $this->assertComplexEquals($expectedResult, $result);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/ImCscTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 class ImCscTest extends ComplexAssert
16 16
 {
17 17
     #[DataProvider('providerIMCSC')]
18
-    public function testDirectCallToIMCSC(float|string $expectedResult, string $arg): void
18
+    public function testDirectCallToIMCSC(float | string $expectedResult, string $arg): void
19 19
     {
20 20
         $result = ComplexFunctions::IMCSC($arg);
21 21
         $this->assertComplexEquals($expectedResult, $result);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/Engineering/ImCotTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 class ImCotTest extends ComplexAssert
16 16
 {
17 17
     #[DataProvider('providerIMCOT')]
18
-    public function testDirectCallToIMCOT(float|string $expectedResult, string $arg): void
18
+    public function testDirectCallToIMCOT(float | string $expectedResult, string $arg): void
19 19
     {
20 20
         $result = ComplexFunctions::IMCOT($arg);
21 21
         $this->assertComplexEquals($expectedResult, $result);
Please login to merge, or discard this patch.