Passed
Pull Request — master (#4483)
by Owen
14:38
created
PhpSpreadsheet/Style/ConditionalFormatting/ConditionalFormatValueObject.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
 {
7 7
     private string $type;
8 8
 
9
-    private null|float|int|string $value;
9
+    private null | float | int | string $value;
10 10
 
11 11
     private ?string $cellFormula;
12 12
 
13
-    public function __construct(string $type, null|float|int|string $value = null, ?string $cellFormula = null)
13
+    public function __construct(string $type, null | float | int | string $value = null, ?string $cellFormula = null)
14 14
     {
15 15
         $this->type = $type;
16 16
         $this->value = $value;
@@ -29,12 +29,12 @@  discard block
 block discarded – undo
29 29
         return $this;
30 30
     }
31 31
 
32
-    public function getValue(): null|float|int|string
32
+    public function getValue(): null | float | int | string
33 33
     {
34 34
         return $this->value;
35 35
     }
36 36
 
37
-    public function setValue(null|float|int|string $value): self
37
+    public function setValue(null | float | int | string $value): self
38 38
     {
39 39
         $this->value = $value;
40 40
 
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/DateTimeExcel/Current.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      * @return DateTime|float|int|string Excel date/time serial value, PHP date/time serial value or PHP date/time object,
26 26
      *                        depending on the value of the ReturnDateType flag
27 27
      */
28
-    public static function today(): DateTime|float|int|string
28
+    public static function today(): DateTime | float | int | string
29 29
     {
30 30
         $dti = new DateTimeImmutable();
31 31
         $dateArray = Helpers::dateParse($dti->format('c'));
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      * @return DateTime|float|int|string Excel date/time serial value, PHP date/time serial value or PHP date/time object,
51 51
      *                        depending on the value of the ReturnDateType flag
52 52
      */
53
-    public static function now(): DateTime|float|int|string
53
+    public static function now(): DateTime | float | int | string
54 54
     {
55 55
         $dti = new DateTimeImmutable();
56 56
         $dateArray = Helpers::dateParse($dti->format('c'));
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/DateTimeExcel/Month.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      *         If an array of values is passed as the argument, then the returned result will also be an array
35 35
      *            with the same dimensions
36 36
      */
37
-    public static function adjust(mixed $dateValue, array|string|bool|float|int $adjustmentMonths): DateTime|float|int|string|array
37
+    public static function adjust(mixed $dateValue, array | string | bool | float | int $adjustmentMonths): DateTime | float | int | string | array
38 38
     {
39 39
         if (is_array($dateValue) || is_array($adjustmentMonths)) {
40 40
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $dateValue, $adjustmentMonths);
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      *         If an array of values is passed as the argument, then the returned result will also be an array
79 79
      *            with the same dimensions
80 80
      */
81
-    public static function lastDay(mixed $dateValue, array|float|int|bool|string $adjustmentMonths): array|string|DateTime|float|int
81
+    public static function lastDay(mixed $dateValue, array | float | int | bool | string $adjustmentMonths): array | string | DateTime | float | int
82 82
     {
83 83
         if (is_array($dateValue) || is_array($adjustmentMonths)) {
84 84
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $dateValue, $adjustmentMonths);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/DateTimeExcel/DateValue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      *         If an array of numbers is passed as the argument, then the returned result will also be an array
41 41
      *            with the same dimensions
42 42
      */
43
-    public static function fromString(null|array|string|int|bool|float $dateValue): array|string|float|int|DateTime
43
+    public static function fromString(null | array | string | int | bool | float $dateValue): array | string | float | int | DateTime
44 44
     {
45 45
         if (is_array($dateValue)) {
46 46
             return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $dateValue);
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
      * @return DateTime|float|int|string Excel date/time serial value, PHP date/time serial value or PHP date/time object,
136 136
      *                        depending on the value of the ReturnDateType flag
137 137
      */
138
-    private static function finalResults(array $PHPDateArray, DateTimeImmutable $dti, int $baseYear): string|float|int|DateTime
138
+    private static function finalResults(array $PHPDateArray, DateTimeImmutable $dti, int $baseYear): string | float | int | DateTime
139 139
     {
140 140
         $retValue = ExcelError::Value();
141 141
         if (Helpers::dateParseSucceeded($PHPDateArray)) {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical/MaxMinBase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 abstract class MaxMinBase
6 6
 {
7
-    protected static function datatypeAdjustmentAllowStrings(int|float|string|bool $value): int|float
7
+    protected static function datatypeAdjustmentAllowStrings(int | float | string | bool $value): int | float
8 8
     {
9 9
         if (is_bool($value)) {
10 10
             return (int) $value;
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical/VarianceBase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 abstract class VarianceBase
8 8
 {
9
-    protected static function datatypeAdjustmentAllowStrings(int|float|string|bool $value): int|float
9
+    protected static function datatypeAdjustmentAllowStrings(int | float | string | bool $value): int | float
10 10
     {
11 11
         if (is_bool($value)) {
12 12
             return (int) $value;
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Shared/StringHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
      * Formats a numeric value as a string for output in various output writers forcing
330 330
      * point as decimal separator in case locale is other than English.
331 331
      */
332
-    public static function formatNumber(float|int|string|null $numericValue): string
332
+    public static function formatNumber(float | int | string | null $numericValue): string
333 333
     {
334 334
         if (is_float($numericValue)) {
335 335
             return str_replace(',', '.', (string) $numericValue);
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
     {
385 385
         // characters
386 386
         $chars = self::convertEncoding($textValue, 'UTF-16LE', 'UTF-8');
387
-        $ln = (int) (strlen($chars) / 2);  // N.B. - strlen, not mb_strlen issue #642
387
+        $ln = (int) (strlen($chars) / 2); // N.B. - strlen, not mb_strlen issue #642
388 388
 
389 389
         return pack('vC', $ln, 0x0001) . $chars;
390 390
     }
@@ -638,7 +638,7 @@  discard block
 block discarded – undo
638 638
      *
639 639
      * @return float|string string or only the leading numeric part of the string
640 640
      */
641
-    public static function testStringAsNumeric(string $textValue): float|string
641
+    public static function testStringAsNumeric(string $textValue): float | string
642 642
     {
643 643
         if (is_numeric($textValue)) {
644 644
             return $textValue;
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Chart/DataSeries.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
      * @param DataSeriesValues[] $plotValues
114 114
      */
115 115
     public function __construct(
116
-        null|string $plotType = null,
117
-        null|string $plotGrouping = null,
116
+        null | string $plotType = null,
117
+        null | string $plotGrouping = null,
118 118
         array $plotOrder = [],
119 119
         array $plotLabel = [],
120 120
         array $plotCategory = [],
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
      *
233 233
      * @return DataSeriesValues|false
234 234
      */
235
-    public function getPlotLabelByIndex(int $index): bool|DataSeriesValues
235
+    public function getPlotLabelByIndex(int $index): bool | DataSeriesValues
236 236
     {
237 237
         $keys = array_keys($this->plotLabel);
238 238
         if (in_array($index, $keys)) {
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
      *
258 258
      * @return DataSeriesValues|false
259 259
      */
260
-    public function getPlotCategoryByIndex(int $index): bool|DataSeriesValues
260
+    public function getPlotCategoryByIndex(int $index): bool | DataSeriesValues
261 261
     {
262 262
         $keys = array_keys($this->plotCategory);
263 263
         if (in_array($index, $keys)) {
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
      *
305 305
      * @return DataSeriesValues|false
306 306
      */
307
-    public function getPlotValuesByIndex(int $index): bool|DataSeriesValues
307
+    public function getPlotValuesByIndex(int $index): bool | DataSeriesValues
308 308
     {
309 309
         $keys = array_keys($this->plotValues);
310 310
         if (in_array($index, $keys)) {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Reader/Xls/Escher.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,12 +51,12 @@  discard block
 block discarded – undo
51 51
     /**
52 52
      * The object to be returned by the reader. Modified during load.
53 53
      */
54
-    private BSE|BstoreContainer|DgContainer|DggContainer|\PhpOffice\PhpSpreadsheet\Shared\Escher|SpContainer|SpgrContainer $object;
54
+    private BSE | BstoreContainer | DgContainer | DggContainer | \PhpOffice\PhpSpreadsheet\Shared\Escher | SpContainer | SpgrContainer $object;
55 55
 
56 56
     /**
57 57
      * Create a new Escher instance.
58 58
      */
59
-    public function __construct(BSE|BstoreContainer|DgContainer|DggContainer|\PhpOffice\PhpSpreadsheet\Shared\Escher|SpContainer|SpgrContainer $object)
59
+    public function __construct(BSE | BstoreContainer | DgContainer | DggContainer | \PhpOffice\PhpSpreadsheet\Shared\Escher | SpContainer | SpgrContainer $object)
60 60
     {
61 61
         $this->object = $object;
62 62
     }
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     /**
86 86
      * Load Escher stream data. May be a partial Escher stream.
87 87
      */
88
-    public function load(string $data): BSE|BstoreContainer|DgContainer|DggContainer|\PhpOffice\PhpSpreadsheet\Shared\Escher|SpContainer|SpgrContainer
88
+    public function load(string $data): BSE | BstoreContainer | DgContainer | DggContainer | \PhpOffice\PhpSpreadsheet\Shared\Escher | SpContainer | SpgrContainer
89 89
     {
90 90
         $this->data = $data;
91 91
 
Please login to merge, or discard this patch.