Passed
Pull Request — master (#4202)
by Owen
14:26
created
tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig/SubTotalTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
     /**
10 10
      * @dataProvider providerSUBTOTAL
11 11
      */
12
-    public function testSubtotal(float|int|string $expectedResult, float|int|string $type): void
12
+    public function testSubtotal(float | int | string $expectedResult, float | int | string $type): void
13 13
     {
14 14
         $this->mightHaveException($expectedResult);
15 15
         $sheet = $this->getSheet();
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     /**
30 30
      * @dataProvider providerSUBTOTAL
31 31
      */
32
-    public function testSubtotalColumnHidden(float|int|string $expectedResult, float|int|string $type): void
32
+    public function testSubtotalColumnHidden(float | int | string $expectedResult, float | int | string $type): void
33 33
     {
34 34
         // Hidden columns don't affect calculation, only hidden rows
35 35
         $this->mightHaveException($expectedResult);
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
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     /**
12 12
      * @dataProvider providerSECH
13 13
      */
14
-    public function testSECH(float|int|string $expectedResult, float|int|string $angle): void
14
+    public function testSECH(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/MRoundTest.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 providerMROUND
13 13
      */
14
-    public function testMROUND(float|int|string $expectedResult, string $formula): void
14
+    public function testMROUND(float | int | string $expectedResult, 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/SignTest.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 providerSIGN
13 13
      */
14
-    public function testSIGN(float|int|string $expectedResult, float|int|string $value): void
14
+    public function testSIGN(float | int | string $expectedResult, float | int | string $value): 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/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.