Failed Conditions
Pull Request — master (#3876)
by Abdul Malik
17:26 queued 02:15
created
tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig/MdeTermTest.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
     /**
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();
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig/RoundUpTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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();
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
@@ -11,7 +11,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig/CscTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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();
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
@@ -11,7 +11,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig/CschTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig/SecTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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();
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
@@ -11,7 +11,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/Financial/HelpersTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.