Completed
Push — master ( 3bb10f...9da522 )
by
unknown
39s queued 27s
created
src/PhpSpreadsheet/Reader/XlsBase.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -110,10 +110,10 @@  discard block
 block discarded – undo
110 110
     // should be consistent with Writer\Xls\Style\CellBorder
111 111
     final const BORDER_STYLE_MAP = [
112 112
         Border::BORDER_NONE, // => 0x00,
113
-        Border::BORDER_THIN,  // => 0x01,
113
+        Border::BORDER_THIN, // => 0x01,
114 114
         Border::BORDER_MEDIUM, // => 0x02,
115 115
         Border::BORDER_DASHED, // => 0x03,
116
-        Border::BORDER_DOTTED,  // => 0x04,
116
+        Border::BORDER_DOTTED, // => 0x04,
117 117
         Border::BORDER_THICK, // => 0x05,
118 118
         Border::BORDER_DOUBLE, // => 0x06,
119 119
         Border::BORDER_HAIR, // => 0x07,
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
      *
276 276
      * @param string $data Binary string that is at least 8 bytes long
277 277
      */
278
-    protected static function extractNumber(string $data): int|float
278
+    protected static function extractNumber(string $data): int | float
279 279
     {
280 280
         $rknumhigh = self::getInt4d($data, 4);
281 281
         $rknumlow = self::getInt4d($data, 0);
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
         return $value;
301 301
     }
302 302
 
303
-    protected static function getIEEE754(int $rknum): float|int
303
+    protected static function getIEEE754(int $rknum): float | int
304 304
     {
305 305
         if (($rknum & 0x02) != 0) {
306 306
             $value = $rknum >> 2;
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Reader/Xml.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
     }
109 109
 
110 110
     /** @return false|SimpleXMLElement */
111
-    private function trySimpleXMLLoadStringPrivate(string $filename, string $fileOrString = 'file'): SimpleXMLElement|bool
111
+    private function trySimpleXMLLoadStringPrivate(string $filename, string $fileOrString = 'file'): SimpleXMLElement | bool
112 112
     {
113 113
         $this->xmlFailMessage = "Cannot load invalid XML $fileOrString: " . $filename;
114 114
         $xml = false;
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Cell/StringableObject.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@
 block discarded – undo
6 6
 
7 7
 class StringableObject
8 8
 {
9
-    private int|string $value;
9
+    private int | string $value;
10 10
 
11
-    public function __construct(int|string $value = 'abc')
11
+    public function __construct(int | string $value = 'abc')
12 12
     {
13 13
         $this->value = $value;
14 14
     }
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/MathTrig/Trunc.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      *         If an array of numbers is passed as an argument, then the returned result will also be an array
26 26
      *            with the same dimensions
27 27
      */
28
-    public static function evaluate(array|float|string|null $value = 0, array|float|int|string $digits = 0): array|float|string
28
+    public static function evaluate(array | float | string | null $value = 0, array | float | int | string $digits = 0): array | float | string
29 29
     {
30 30
         if (is_array($value) || is_array($digits)) {
31 31
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $digits);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Style/NumberFormat/Wizard/DurationTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      * @param string[] $formatBlocks
15 15
      */
16 16
     #[\PHPUnit\Framework\Attributes\DataProvider('providerTime')]
17
-    public function testTime(string $expectedResult, string|array|null $separators = null, array $formatBlocks = []): void
17
+    public function testTime(string $expectedResult, string | array | null $separators = null, array $formatBlocks = []): void
18 18
     {
19 19
         $wizard = new Duration($separators, ...$formatBlocks);
20 20
         self::assertSame($expectedResult, (string) $wizard);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Style/NumberFormat/Wizard/TimeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      * @param string[] $formatBlocks
15 15
      */
16 16
     #[\PHPUnit\Framework\Attributes\DataProvider('providerTime')]
17
-    public function testTime(string $expectedResult, string|array|null $separators = null, array $formatBlocks = []): void
17
+    public function testTime(string $expectedResult, string | array | null $separators = null, array $formatBlocks = []): void
18 18
     {
19 19
         $wizard = new Time($separators, ...$formatBlocks);
20 20
         self::assertSame($expectedResult, (string) $wizard);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Style/NumberFormat/Wizard/DateTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      * @param string[] $formatBlocks
15 15
      */
16 16
     #[\PHPUnit\Framework\Attributes\DataProvider('providerDate')]
17
-    public function testDate(string $expectedResult, string|array|null $separators = null, array $formatBlocks = []): void
17
+    public function testDate(string $expectedResult, string | array | null $separators = null, array $formatBlocks = []): void
18 18
     {
19 19
         $wizard = new Date($separators, ...$formatBlocks);
20 20
         self::assertSame($expectedResult, (string) $wizard);
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Style/NumberFormat/Wizard/DateTimeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      * @param string[] $formatBlocks
17 17
      */
18 18
     #[\PHPUnit\Framework\Attributes\DataProvider('providerDateTime')]
19
-    public function testDateTime(string $expectedResult, string|null|array $separators, array $formatBlocks): void
19
+    public function testDateTime(string $expectedResult, string | null | array $separators, array $formatBlocks): void
20 20
     {
21 21
         $wizard = new DateTime($separators, ...$formatBlocks);
22 22
         self::assertSame($expectedResult, (string) $wizard);
Please login to merge, or discard this patch.
PhpSpreadsheetTests/Calculation/Functions/TextData/ValueToTextTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 class ValueToTextTest extends AllSetupTeardown
11 11
 {
12 12
     #[\PHPUnit\Framework\Attributes\DataProvider('providerVALUE')]
13
-    public function testVALUETOTEXT(mixed $expectedResult, mixed $value, int|string $format): void
13
+    public function testVALUETOTEXT(mixed $expectedResult, mixed $value, int | string $format): void
14 14
     {
15 15
         $sheet = $this->getSheet();
16 16
         $this->setCell('A1', $value);
Please login to merge, or discard this patch.