Passed
Pull Request — master (#4445)
by Owen
20:58
created
tests/PhpSpreadsheetTests/Reader/Ods/ArrayFormulaTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         string $cellAddress,
29 29
         string $expectedRange,
30 30
         string $expectedFormula,
31
-        array|float $expectedValue
31
+        array | float $expectedValue
32 32
     ): void {
33 33
         $filename = 'tests/data/Reader/Ods/ArrayFormulaTest.ods';
34 34
         $reader = new Ods();
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Information/ErrorValue.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      * @return array|bool If an array of numbers is passed as an argument, then the returned result will also be an array
19 19
      *            with the same dimensions
20 20
      */
21
-    public static function isErr(mixed $value = ''): array|bool
21
+    public static function isErr(mixed $value = ''): array | bool
22 22
     {
23 23
         if (is_array($value)) {
24 24
             return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value);
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      * @return array|bool If an array of numbers is passed as an argument, then the returned result will also be an array
37 37
      *            with the same dimensions
38 38
      */
39
-    public static function isError(mixed $value = '', bool $tryNotImplemented = false): array|bool
39
+    public static function isError(mixed $value = '', bool $tryNotImplemented = false): array | bool
40 40
     {
41 41
         if (is_array($value)) {
42 42
             return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value);
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      * @return array|bool If an array of numbers is passed as an argument, then the returned result will also be an array
62 62
      *            with the same dimensions
63 63
      */
64
-    public static function isNa(mixed $value = ''): array|bool
64
+    public static function isNa(mixed $value = ''): array | bool
65 65
     {
66 66
         if (is_array($value)) {
67 67
             return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/TextData/Text.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      * @return array|int|string If an array of values is passed for the argument, then the returned result
22 22
      *            will also be an array with matching dimensions
23 23
      */
24
-    public static function length(mixed $value = ''): array|int|string
24
+    public static function length(mixed $value = ''): array | int | string
25 25
     {
26 26
         if (is_array($value)) {
27 27
             return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value);
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * @return array|bool|string If an array of values is passed for either of the arguments, then the returned result
50 50
      *            will also be an array with matching dimensions
51 51
      */
52
-    public static function exact(mixed $value1, mixed $value2): array|bool|string
52
+    public static function exact(mixed $value1, mixed $value2): array | bool | string
53 53
     {
54 54
         if (is_array($value1) || is_array($value2)) {
55 55
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $value1, $value2);
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      * @return array|string If an array of values is passed for the argument, then the returned result
75 75
      *            will also be an array with matching dimensions
76 76
      */
77
-    public static function test(mixed $testValue = ''): array|string
77
+    public static function test(mixed $testValue = ''): array | string
78 78
     {
79 79
         if (is_array($testValue)) {
80 80
             return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $testValue);
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      *
109 109
      * @return array|string the array built from the text, split by the row and column delimiters, or an error string
110 110
      */
111
-    public static function split(mixed $text, $columnDelimiter = null, $rowDelimiter = null, bool $ignoreEmpty = false, bool $matchMode = true, mixed $padding = '#N/A'): array|string
111
+    public static function split(mixed $text, $columnDelimiter = null, $rowDelimiter = null, bool $ignoreEmpty = false, bool $matchMode = true, mixed $padding = '#N/A'): array | string
112 112
     {
113 113
         $text = Functions::flattenSingleValue($text);
114 114
         if (ErrorValue::isError($text, true)) {
Please login to merge, or discard this patch.
Calculation/Financial/CashFlow/Constant/Periodic/Interest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         mixed $presentValue,
38 38
         mixed $futureValue = 0,
39 39
         mixed $type = FinancialConstants::PAYMENT_END_OF_PERIOD
40
-    ): string|float {
40
+    ): string | float {
41 41
         $interestRate = Functions::flattenSingleValue($interestRate);
42 42
         $period = Functions::flattenSingleValue($period);
43 43
         $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods);
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      * @param mixed $numberOfPeriods is the number of payments for the annuity
88 88
      * @param mixed $principleRemaining is the loan amount or present value of the payments
89 89
      */
90
-    public static function schedulePayment(mixed $interestRate, mixed $period, mixed $numberOfPeriods, mixed $principleRemaining): string|float
90
+    public static function schedulePayment(mixed $interestRate, mixed $period, mixed $numberOfPeriods, mixed $principleRemaining): string | float
91 91
     {
92 92
         $interestRate = Functions::flattenSingleValue($interestRate);
93 93
         $period = Functions::flattenSingleValue($period);
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
         mixed $futureValue = 0.0,
157 157
         mixed $type = FinancialConstants::PAYMENT_END_OF_PERIOD,
158 158
         mixed $guess = 0.1
159
-    ): string|float {
159
+    ): string | float {
160 160
         $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods);
161 161
         $payment = Functions::flattenSingleValue($payment);
162 162
         $presentValue = Functions::flattenSingleValue($presentValue);
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
         return $close ? $rate : ExcelError::NAN();
194 194
     }
195 195
 
196
-    private static function rateNextGuess(float $rate, float $numberOfPeriods, float $payment, float $presentValue, float $futureValue, int $type): string|float
196
+    private static function rateNextGuess(float $rate, float $numberOfPeriods, float $payment, float $presentValue, float $futureValue, int $type): string | float
197 197
     {
198 198
         if ($rate == 0.0) {
199 199
             return ExcelError::NAN();
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Reader/Xls.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4648,7 +4648,7 @@
 block discarded – undo
4648 4648
      * It can also happen that the REF structure uses the -1 (FFFF) code to indicate deleted sheets,
4649 4649
      * in which case an Exception is thrown.
4650 4650
      */
4651
-    protected function readSheetRangeByRefIndex(int $index): string|false
4651
+    protected function readSheetRangeByRefIndex(int $index): string | false
4652 4652
     {
4653 4653
         if (isset($this->ref[$index])) {
4654 4654
             $type = $this->externalBooks[$this->ref[$index]['externalBookIndex']]['type'];
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Reader/Xls/ConditionalFormatting.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
     {
300 300
     }*/
301 301
 
302
-    private function readCFFormula(string $recordData, int $offset, int $size, Xls $xls): float|int|string|null
302
+    private function readCFFormula(string $recordData, int $offset, int $size, Xls $xls): float | int | string | null
303 303
     {
304 304
         try {
305 305
             $formula = substr($recordData, $offset, $size);
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
         }
317 317
     }
318 318
 
319
-    private function setCFRules(array $cellRanges, string $type, string $operator, null|float|int|string $formula1, null|float|int|string $formula2, Style $style, bool $noFormatSet, Xls $xls): void
319
+    private function setCFRules(array $cellRanges, string $type, string $operator, null | float | int | string $formula1, null | float | int | string $formula2, Style $style, bool $noFormatSet, Xls $xls): void
320 320
     {
321 321
         foreach ($cellRanges as $cellRange) {
322 322
             $conditional = new Conditional();
Please login to merge, or discard this patch.
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.