Passed
Pull Request — master (#3793)
by Adrien
12:22
created
Category
src/PhpSpreadsheet/Calculation/Information/ExcelError.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      *
52 52
      * @param mixed $value Value to check
53 53
      */
54
-    public static function type(mixed $value = ''): array|int|string
54
+    public static function type(mixed $value = ''): array | int | string
55 55
     {
56 56
         if (is_array($value)) {
57 57
             return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/TextData/CharacterConvert.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      *         If an array of values is passed as the argument, then the returned result will also be an array
21 21
      *            with the same dimensions
22 22
      */
23
-    public static function character(mixed $character): array|string
23
+    public static function character(mixed $character): array | string
24 24
     {
25 25
         if (is_array($character)) {
26 26
             return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $character);
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      *         If an array of values is passed as the argument, then the returned result will also be an array
47 47
      *            with the same dimensions
48 48
      */
49
-    public static function code(mixed $characters): array|string|int
49
+    public static function code(mixed $characters): array | string | int
50 50
     {
51 51
         if (is_array($characters)) {
52 52
             return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $characters);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/TextData/Search.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
      *         If an array of values is passed for the $value or $chars arguments, then the returned result
26 26
      *            will also be an array with matching dimensions
27 27
      */
28
-    public static function sensitive(mixed $needle, mixed $haystack, mixed $offset = 1): array|string|int
28
+    public static function sensitive(mixed $needle, mixed $haystack, mixed $offset = 1): array | string | int
29 29
     {
30 30
         if (is_array($needle) || is_array($haystack) || is_array($offset)) {
31 31
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $needle, $haystack, $offset);
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      *         If an array of values is passed for the $value or $chars arguments, then the returned result
68 68
      *            will also be an array with matching dimensions
69 69
      */
70
-    public static function insensitive(mixed $needle, mixed $haystack, mixed $offset = 1): array|string|int
70
+    public static function insensitive(mixed $needle, mixed $haystack, mixed $offset = 1): array | string | int
71 71
     {
72 72
         if (is_array($needle) || is_array($haystack) || is_array($offset)) {
73 73
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $needle, $haystack, $offset);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/TextData/Concatenate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      *         If an array of values is passed for the $delimiter or $ignoreEmpty arguments, then the returned result
57 57
      *            will also be an array with matching dimensions
58 58
      */
59
-    public static function TEXTJOIN(mixed $delimiter = '', mixed $ignoreEmpty = true, mixed ...$args): array|string
59
+    public static function TEXTJOIN(mixed $delimiter = '', mixed $ignoreEmpty = true, mixed ...$args): array | string
60 60
     {
61 61
         if (is_array($delimiter) || is_array($ignoreEmpty)) {
62 62
             return self::evaluateArrayArgumentsSubset(
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      *         If an array of values is passed for the $stringValue or $repeatCount arguments, then the returned result
114 114
      *            will also be an array with matching dimensions
115 115
      */
116
-    public static function builtinREPT(mixed $stringValue, mixed $repeatCount): array|string
116
+    public static function builtinREPT(mixed $stringValue, mixed $repeatCount): array | string
117 117
     {
118 118
         if (is_array($stringValue) || is_array($repeatCount)) {
119 119
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $stringValue, $repeatCount);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Financial/TreasuryBill.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      *
25 25
      * @return float|string Result, or a string containing an error
26 26
      */
27
-    public static function bondEquivalentYield(mixed $settlement, mixed $maturity, mixed $discount): string|float
27
+    public static function bondEquivalentYield(mixed $settlement, mixed $maturity, mixed $discount): string | float
28 28
     {
29 29
         $settlement = Functions::flattenSingleValue($settlement);
30 30
         $maturity = Functions::flattenSingleValue($maturity);
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      *
70 70
      * @return float|string Result, or a string containing an error
71 71
      */
72
-    public static function price(mixed $settlement, mixed $maturity, mixed $discount): string|float
72
+    public static function price(mixed $settlement, mixed $maturity, mixed $discount): string | float
73 73
     {
74 74
         $settlement = Functions::flattenSingleValue($settlement);
75 75
         $maturity = Functions::flattenSingleValue($maturity);
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      *                                The maturity date is the date when the Treasury bill expires.
118 118
      * @param float|string $price The Treasury bill's price per $100 face value
119 119
      */
120
-    public static function yield(mixed $settlement, mixed $maturity, $price): string|float
120
+    public static function yield(mixed $settlement, mixed $maturity, $price): string | float
121 121
     {
122 122
         $settlement = Functions::flattenSingleValue($settlement);
123 123
         $maturity = Functions::flattenSingleValue($maturity);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Financial/Amortization.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         mixed $period,
48 48
         mixed $rate,
49 49
         mixed $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD
50
-    ): string|float {
50
+    ): string | float {
51 51
         $cost = Functions::flattenSingleValue($cost);
52 52
         $purchased = Functions::flattenSingleValue($purchased);
53 53
         $firstPeriod = Functions::flattenSingleValue($firstPeriod);
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         mixed $period,
134 134
         mixed $rate,
135 135
         mixed $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD
136
-    ): string|float {
136
+    ): string | float {
137 137
         $cost = Functions::flattenSingleValue($cost);
138 138
         $purchased = Functions::flattenSingleValue($purchased);
139 139
         $firstPeriod = Functions::flattenSingleValue($firstPeriod);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Financial/Dollar.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * @param mixed $fraction Fraction
50 50
      *              Or can be an array of values
51 51
      */
52
-    public static function decimal(mixed $fractionalDollar = null, mixed $fraction = 0): array|string|float
52
+    public static function decimal(mixed $fractionalDollar = null, mixed $fraction = 0): array | string | float
53 53
     {
54 54
         if (is_array($fractionalDollar) || is_array($fraction)) {
55 55
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $fractionalDollar, $fraction);
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      * @param mixed $fraction Fraction
96 96
      *              Or can be an array of values
97 97
      */
98
-    public static function fractional(mixed $decimalDollar = null, mixed $fraction = 0): array|string|float
98
+    public static function fractional(mixed $decimalDollar = null, mixed $fraction = 0): array | string | float
99 99
     {
100 100
         if (is_array($decimalDollar) || is_array($fraction)) {
101 101
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $decimalDollar, $fraction);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Financial/Securities/Price.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         mixed $redemption,
46 46
         mixed $frequency,
47 47
         mixed $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD
48
-    ): string|float {
48
+    ): string | float {
49 49
         $settlement = Functions::flattenSingleValue($settlement);
50 50
         $maturity = Functions::flattenSingleValue($maturity);
51 51
         $rate = Functions::flattenSingleValue($rate);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Financial/Coupons.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         mixed $maturity,
48 48
         mixed $frequency,
49 49
         mixed $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD
50
-    ): string|int|float {
50
+    ): string | int | float {
51 51
         $settlement = Functions::flattenSingleValue($settlement);
52 52
         $maturity = Functions::flattenSingleValue($maturity);
53 53
         $frequency = Functions::flattenSingleValue($frequency);
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         mixed $maturity,
111 111
         mixed $frequency,
112 112
         mixed $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD
113
-    ): string|int|float {
113
+    ): string | int | float {
114 114
         $settlement = Functions::flattenSingleValue($settlement);
115 115
         $maturity = Functions::flattenSingleValue($maturity);
116 116
         $frequency = Functions::flattenSingleValue($frequency);
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
         mixed $maturity,
180 180
         mixed $frequency,
181 181
         mixed $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD
182
-    ): string|float {
182
+    ): string | float {
183 183
         $settlement = Functions::flattenSingleValue($settlement);
184 184
         $maturity = Functions::flattenSingleValue($maturity);
185 185
         $frequency = Functions::flattenSingleValue($frequency);
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
         mixed $maturity,
245 245
         mixed $frequency,
246 246
         mixed $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD
247
-    ): string|float {
247
+    ): string | float {
248 248
         $settlement = Functions::flattenSingleValue($settlement);
249 249
         $maturity = Functions::flattenSingleValue($maturity);
250 250
         $frequency = Functions::flattenSingleValue($frequency);
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
         mixed $maturity,
298 298
         mixed $frequency,
299 299
         mixed $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD
300
-    ): string|int {
300
+    ): string | int {
301 301
         $settlement = Functions::flattenSingleValue($settlement);
302 302
         $maturity = Functions::flattenSingleValue($maturity);
303 303
         $frequency = Functions::flattenSingleValue($frequency);
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
         mixed $maturity,
358 358
         mixed $frequency,
359 359
         mixed $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD
360
-    ): string|float {
360
+    ): string | float {
361 361
         $settlement = Functions::flattenSingleValue($settlement);
362 362
         $maturity = Functions::flattenSingleValue($maturity);
363 363
         $frequency = Functions::flattenSingleValue($frequency);
Please login to merge, or discard this patch.