Passed
Push — master ( 31e252...eec07c )
by Owen
17:16 queued 06:48
created
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.
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.