@@ -15,7 +15,7 @@ |
||
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); |
@@ -15,7 +15,7 @@ |
||
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); |
@@ -15,7 +15,7 @@ |
||
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); |
@@ -15,7 +15,7 @@ |
||
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); |