Passed
Push — master ( e6aacf...0e570a )
by
unknown
25:35 queued 18:08
created
tests/PhpSpreadsheetTests/Calculation/Functions/Information/IsOddTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     }
19 19
 
20 20
     #[\PHPUnit\Framework\Attributes\DataProvider('providerIsOdd')]
21
-    public function testIsOdd(bool|string $expectedResult, mixed $value): void
21
+    public function testIsOdd(bool | string $expectedResult, mixed $value): void
22 22
     {
23 23
         $result = Value::isOdd($value);
24 24
         self::assertEquals($expectedResult, $result);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/Information/IsEvenTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     }
19 19
 
20 20
     #[\PHPUnit\Framework\Attributes\DataProvider('providerIsEven')]
21
-    public function testIsEven(bool|string $expectedResult, mixed $value): void
21
+    public function testIsEven(bool | string $expectedResult, mixed $value): void
22 22
     {
23 23
         $result = Value::isEven($value);
24 24
         self::assertEquals($expectedResult, $result);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/LookupRef/ColumnTest.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
 class ColumnTest extends AllSetupTeardown
10 10
 {
11 11
     #[\PHPUnit\Framework\Attributes\DataProvider('providerCOLUMN')]
12
-    public function testCOLUMN(mixed $expectedResult, null|array|string $cellReference = null): void
12
+    public function testCOLUMN(mixed $expectedResult, null | array | string $cellReference = null): void
13 13
     {
14 14
         $result = LookupRef\RowColumnInformation::COLUMN($cellReference);
15 15
         self::assertSame($expectedResult, $result);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/LookupRef/MatchTest.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
 class MatchTest extends AllSetupTeardown
10 10
 {
11 11
     #[\PHPUnit\Framework\Attributes\DataProvider('providerMATCH')]
12
-    public function testMATCH(mixed $expectedResult, mixed $input, array $array, null|float|int|string $type = null): void
12
+    public function testMATCH(mixed $expectedResult, mixed $input, array $array, null | float | int | string $type = null): void
13 13
     {
14 14
         if (is_array($expectedResult)) {
15 15
             $expectedResult = $expectedResult[0];
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     #[\PHPUnit\Framework\Attributes\DataProvider('providerMATCH')]
41
-    public function testMATCHLibre(mixed $expectedResult, mixed $input, array $array, null|float|int|string $type = null): void
41
+    public function testMATCHLibre(mixed $expectedResult, mixed $input, array $array, null | float | int | string $type = null): void
42 42
     {
43 43
         $this->setOpenOffice();
44 44
         if (is_array($expectedResult)) {
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/LookupRef/ColumnsTest.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
 class ColumnsTest extends TestCase
12 12
 {
13 13
     #[\PHPUnit\Framework\Attributes\DataProvider('providerCOLUMNS')]
14
-    public function testCOLUMNS(mixed $expectedResult, null|array|string $arg): void
14
+    public function testCOLUMNS(mixed $expectedResult, null | array | string $arg): void
15 15
     {
16 16
         $result = LookupRef\RowColumnInformation::COLUMNS($arg);
17 17
         self::assertEquals($expectedResult, $result);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/LookupRef/RowTest.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
 class RowTest extends AllSetupTeardown
10 10
 {
11 11
     #[\PHPUnit\Framework\Attributes\DataProvider('providerROW')]
12
-    public function testROW(mixed $expectedResult, null|array|string $cellReference = null): void
12
+    public function testROW(mixed $expectedResult, null | array | string $cellReference = null): void
13 13
     {
14 14
         $result = LookupRef\RowColumnInformation::ROW($cellReference);
15 15
         self::assertSame($expectedResult, $result);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Calculation/Functions/LookupRef/RowsTest.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
 class RowsTest extends TestCase
12 12
 {
13 13
     #[\PHPUnit\Framework\Attributes\DataProvider('providerROWS')]
14
-    public function testROWS(mixed $expectedResult, null|array|string $arg): void
14
+    public function testROWS(mixed $expectedResult, null | array | string $arg): void
15 15
     {
16 16
         $result = LookupRef\RowColumnInformation::ROWS($arg);
17 17
         self::assertEquals($expectedResult, $result);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Reader/Csv/CsvIssue2232Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     }
31 31
 
32 32
     #[\PHPUnit\Framework\Attributes\DataProvider('providerIssue2232')]
33
-    public function testBooleanConversions(bool $useStringBinder, ?bool $preserveBoolString, bool|string $b2Value, bool|string $b3Value): void
33
+    public function testBooleanConversions(bool $useStringBinder, ?bool $preserveBoolString, bool | string $b2Value, bool | string $b3Value): void
34 34
     {
35 35
         if ($useStringBinder) {
36 36
             $binder = new StringValueBinder();
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Reader/Csv/CsvNumberFormatTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     }
22 22
 
23 23
     #[\PHPUnit\Framework\Attributes\DataProvider('providerNumberFormatNoConversionTest')]
24
-    public function testNumberFormatNoConversion(int|string $expectedValue, string $expectedFormat, string $cellAddress): void
24
+    public function testNumberFormatNoConversion(int | string $expectedValue, string $expectedFormat, string $cellAddress): void
25 25
     {
26 26
         $spreadsheet = $this->csvReader->load($this->filename);
27 27
         $worksheet = $spreadsheet->getActiveSheet();
Please login to merge, or discard this patch.