@@ -9,7 +9,7 @@ |
||
9 | 9 | /** |
10 | 10 | * @dataProvider providerMDETERM |
11 | 11 | */ |
12 | - public function testMDETERM2(float|int|string $expectedResult, array|int|float|string $matrix): void |
|
12 | + public function testMDETERM2(float | int | string $expectedResult, array | int | float | string $matrix): void |
|
13 | 13 | { |
14 | 14 | $this->mightHaveException($expectedResult); |
15 | 15 | $sheet = $this->getSheet(); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | /** |
12 | 12 | * @dataProvider providerRoundUp |
13 | 13 | */ |
14 | - public function testRoundUp(float|int|string $expectedResult, float|int|string $formula): void |
|
14 | + public function testRoundUp(float | int | string $expectedResult, float | int | string $formula): void |
|
15 | 15 | { |
16 | 16 | $this->mightHaveException($expectedResult); |
17 | 17 | $sheet = $this->getSheet(); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | /** |
12 | 12 | * @dataProvider providerRoundDown |
13 | 13 | */ |
14 | - public function testRoundDown(float|int|string $expectedResult, float|int|string $formula): void |
|
14 | + public function testRoundDown(float | int | string $expectedResult, float | int | string $formula): void |
|
15 | 15 | { |
16 | 16 | $this->mightHaveException($expectedResult); |
17 | 17 | $sheet = $this->getSheet(); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | /** |
12 | 12 | * @dataProvider providerCSC |
13 | 13 | */ |
14 | - public function testCSC(float|int|string $expectedResult, float|int|string $angle): void |
|
14 | + public function testCSC(float | int | string $expectedResult, float | int | string $angle): void |
|
15 | 15 | { |
16 | 16 | $this->mightHaveException($expectedResult); |
17 | 17 | $sheet = $this->getSheet(); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | /** |
12 | 12 | * @dataProvider providerCOT |
13 | 13 | */ |
14 | - public function testCOT(float|int|string $expectedResult, float|int|string $angle): void |
|
14 | + public function testCOT(float | int | string $expectedResult, float | int | string $angle): void |
|
15 | 15 | { |
16 | 16 | $this->mightHaveException($expectedResult); |
17 | 17 | $sheet = $this->getSheet(); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | /** |
12 | 12 | * @dataProvider providerCSCH |
13 | 13 | */ |
14 | - public function testCSCH(float|int|string $expectedResult, float|int|string $angle): void |
|
14 | + public function testCSCH(float | int | string $expectedResult, float | int | string $angle): void |
|
15 | 15 | { |
16 | 16 | $this->mightHaveException($expectedResult); |
17 | 17 | $sheet = $this->getSheet(); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | /** |
12 | 12 | * @dataProvider providerSEC |
13 | 13 | */ |
14 | - public function testSEC(float|int|string $expectedResult, float|int|string $angle): void |
|
14 | + public function testSEC(float | int | string $expectedResult, float | int | string $angle): void |
|
15 | 15 | { |
16 | 16 | $this->mightHaveException($expectedResult); |
17 | 17 | $sheet = $this->getSheet(); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | /** |
12 | 12 | * @dataProvider providerACOTH |
13 | 13 | */ |
14 | - public function testACOTH(float|int|string $expectedResult, float|int|string $number): void |
|
14 | + public function testACOTH(float | int | string $expectedResult, float | int | string $number): void |
|
15 | 15 | { |
16 | 16 | $this->mightHaveException($expectedResult); |
17 | 17 | $sheet = $this->getSheet(); |
@@ -12,7 +12,7 @@ |
||
12 | 12 | /** |
13 | 13 | * @dataProvider providerDaysPerYear |
14 | 14 | */ |
15 | - public function testDaysPerYear(mixed $expectedResult, int $year, int|string $basis): void |
|
15 | + public function testDaysPerYear(mixed $expectedResult, int $year, int | string $basis): void |
|
16 | 16 | { |
17 | 17 | $result = Helpers::daysPerYear($year, $basis); |
18 | 18 | self::assertSame($expectedResult, $result); |