@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | * If an array of numbers is passed as the argument, then the returned result will also be an array |
28 | 28 | * with the same dimensions |
29 | 29 | */ |
30 | - public static function fact($factVal): array|string|float|int |
|
30 | + public static function fact($factVal): array | string | float | int |
|
31 | 31 | { |
32 | 32 | if (is_array($factVal)) { |
33 | 33 | return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $factVal); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * If an array of numbers is passed as the argument, then the returned result will also be an array |
70 | 70 | * with the same dimensions |
71 | 71 | */ |
72 | - public static function factDouble($factVal): array|string|float|int |
|
72 | + public static function factDouble($factVal): array | string | float | int |
|
73 | 73 | { |
74 | 74 | if (is_array($factVal)) { |
75 | 75 | return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $factVal); |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * |
102 | 102 | * @return float|int|string The result, or a string containing an error |
103 | 103 | */ |
104 | - public static function multinomial(...$args): string|int|float |
|
104 | + public static function multinomial(...$args): string | int | float |
|
105 | 105 | { |
106 | 106 | $summer = 0; |
107 | 107 | $divisor = 1; |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | * |
19 | 19 | * @param mixed ...$args Data values |
20 | 20 | */ |
21 | - public static function sumIgnoringStrings(mixed ...$args): float|int|string |
|
21 | + public static function sumIgnoringStrings(mixed ...$args): float | int | string |
|
22 | 22 | { |
23 | 23 | $returnValue = 0; |
24 | 24 | |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * |
46 | 46 | * @param mixed ...$args Data values |
47 | 47 | */ |
48 | - public static function sumErroringStrings(mixed ...$args): float|int|string|array |
|
48 | + public static function sumErroringStrings(mixed ...$args): float | int | string | array |
|
49 | 49 | { |
50 | 50 | $returnValue = 0; |
51 | 51 | // Loop through the arguments |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | * |
78 | 78 | * @return float|int|string The result, or a string containing an error |
79 | 79 | */ |
80 | - public static function product(mixed ...$args): string|int|float |
|
80 | + public static function product(mixed ...$args): string | int | float |
|
81 | 81 | { |
82 | 82 | $arrayList = $args; |
83 | 83 |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * |
16 | 16 | * @return float|int Random number |
17 | 17 | */ |
18 | - public static function rand(): int|float |
|
18 | + public static function rand(): int | float |
|
19 | 19 | { |
20 | 20 | return mt_rand(0, 10000000) / 10000000; |
21 | 21 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | * If an array of numbers is passed as an argument, then the returned result will also be an array |
33 | 33 | * with the same dimensions |
34 | 34 | */ |
35 | - public static function randBetween(mixed $min, mixed $max): array|string|int |
|
35 | + public static function randBetween(mixed $min, mixed $max): array | string | int |
|
36 | 36 | { |
37 | 37 | if (is_array($min) || is_array($max)) { |
38 | 38 | return self::evaluateArrayArguments([self::class, __FUNCTION__], $min, $max); |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | * |
68 | 68 | * @return array|string The resulting array, or a string containing an error |
69 | 69 | */ |
70 | - public static function randArray(mixed $rows = 1, mixed $columns = 1, mixed $min = 0, mixed $max = 1, bool $wholeNumber = false): string|array |
|
70 | + public static function randArray(mixed $rows = 1, mixed $columns = 1, mixed $min = 0, mixed $max = 1, bool $wholeNumber = false): string | array |
|
71 | 71 | { |
72 | 72 | try { |
73 | 73 | $rows = (int) Helpers::validateNumericNullSubstitution($rows, 1); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | return array_chunk( |
88 | 88 | array_map( |
89 | - function () use ($min, $max, $wholeNumber): int|float { |
|
89 | + function () use ($min, $max, $wholeNumber): int | float { |
|
90 | 90 | return $wholeNumber |
91 | 91 | ? mt_rand((int) $min, (int) $max) |
92 | 92 | : (mt_rand() / mt_getrandmax()) * ($max - $min) + $min; |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | * @param mixed $principal the present value |
21 | 21 | * @param float[] $schedule an array of interest rates to apply |
22 | 22 | */ |
23 | - public static function futureValue(mixed $principal, array $schedule): string|float |
|
23 | + public static function futureValue(mixed $principal, array $schedule): string | float |
|
24 | 24 | { |
25 | 25 | $principal = Functions::flattenSingleValue($principal); |
26 | 26 | $schedule = Functions::flattenArray($schedule); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * |
51 | 51 | * @return float|string Result, or a string containing an error |
52 | 52 | */ |
53 | - public static function periods(mixed $rate, mixed $presentValue, mixed $futureValue): string|float |
|
53 | + public static function periods(mixed $rate, mixed $presentValue, mixed $futureValue): string | float |
|
54 | 54 | { |
55 | 55 | $rate = Functions::flattenSingleValue($rate); |
56 | 56 | $presentValue = Functions::flattenSingleValue($presentValue); |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * |
84 | 84 | * @return float|string Result, or a string containing an error |
85 | 85 | */ |
86 | - public static function interestRate(array|float $periods = 0.0, array|float $presentValue = 0.0, array|float $futureValue = 0.0): string|float |
|
86 | + public static function interestRate(array | float $periods = 0.0, array | float $presentValue = 0.0, array | float $futureValue = 0.0): string | float |
|
87 | 87 | { |
88 | 88 | $periods = Functions::flattenSingleValue($periods); |
89 | 89 | $presentValue = Functions::flattenSingleValue($presentValue); |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | * calculate the internal rate of return. |
30 | 30 | * @param mixed $guess A number that you guess is close to the result of IRR |
31 | 31 | */ |
32 | - public static function rate(mixed $values, mixed $guess = 0.1): string|float |
|
32 | + public static function rate(mixed $values, mixed $guess = 0.1): string | float |
|
33 | 33 | { |
34 | 34 | if (!is_array($values)) { |
35 | 35 | return ExcelError::VALUE(); |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | * |
98 | 98 | * @return float|string Result, or a string containing an error |
99 | 99 | */ |
100 | - public static function modifiedRate(mixed $values, mixed $financeRate, mixed $reinvestmentRate): string|float |
|
100 | + public static function modifiedRate(mixed $values, mixed $financeRate, mixed $reinvestmentRate): string | float |
|
101 | 101 | { |
102 | 102 | if (!is_array($values)) { |
103 | 103 | return ExcelError::DIV0(); |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | * |
137 | 137 | * @param array $args |
138 | 138 | */ |
139 | - public static function presentValue(mixed $rate, ...$args): int|float |
|
139 | + public static function presentValue(mixed $rate, ...$args): int | float |
|
140 | 140 | { |
141 | 141 | $returnValue = 0; |
142 | 142 |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * @param mixed $month Number of months in the first year. If month is omitted, |
34 | 34 | * it defaults to 12. |
35 | 35 | */ |
36 | - public static function DB(mixed $cost, mixed $salvage, mixed $life, mixed $period, mixed $month = 12): string|float|int |
|
36 | + public static function DB(mixed $cost, mixed $salvage, mixed $life, mixed $period, mixed $month = 12): string | float | int |
|
37 | 37 | { |
38 | 38 | $cost = Functions::flattenSingleValue($cost); |
39 | 39 | $salvage = Functions::flattenSingleValue($salvage); |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | * If factor is omitted, it is assumed to be 2 (the |
98 | 98 | * double-declining balance method). |
99 | 99 | */ |
100 | - public static function DDB(mixed $cost, mixed $salvage, mixed $life, mixed $period, mixed $factor = 2.0): float|string |
|
100 | + public static function DDB(mixed $cost, mixed $salvage, mixed $life, mixed $period, mixed $factor = 2.0): float | string |
|
101 | 101 | { |
102 | 102 | $cost = Functions::flattenSingleValue($cost); |
103 | 103 | $salvage = Functions::flattenSingleValue($salvage); |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | * |
146 | 146 | * @return float|string Result, or a string containing an error |
147 | 147 | */ |
148 | - public static function SLN(mixed $cost, mixed $salvage, mixed $life): string|float |
|
148 | + public static function SLN(mixed $cost, mixed $salvage, mixed $life): string | float |
|
149 | 149 | { |
150 | 150 | $cost = Functions::flattenSingleValue($cost); |
151 | 151 | $salvage = Functions::flattenSingleValue($salvage); |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | * |
179 | 179 | * @return float|string Result, or a string containing an error |
180 | 180 | */ |
181 | - public static function SYD(mixed $cost, mixed $salvage, mixed $life, mixed $period): string|float |
|
181 | + public static function SYD(mixed $cost, mixed $salvage, mixed $life, mixed $period): string | float |
|
182 | 182 | { |
183 | 183 | $cost = Functions::flattenSingleValue($cost); |
184 | 184 | $salvage = Functions::flattenSingleValue($salvage); |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | mixed $price, |
39 | 39 | mixed $redemption, |
40 | 40 | mixed $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD |
41 | - ): float|string { |
|
41 | + ): float | string { |
|
42 | 42 | $settlement = Functions::flattenSingleValue($settlement); |
43 | 43 | $maturity = Functions::flattenSingleValue($maturity); |
44 | 44 | $price = Functions::flattenSingleValue($price); |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | mixed $investment, |
100 | 100 | mixed $redemption, |
101 | 101 | mixed $basis = FinancialConstants::BASIS_DAYS_PER_YEAR_NASD |
102 | - ): float|string { |
|
102 | + ): float | string { |
|
103 | 103 | $settlement = Functions::flattenSingleValue($settlement); |
104 | 104 | $maturity = Functions::flattenSingleValue($maturity); |
105 | 105 | $investment = Functions::flattenSingleValue($investment); |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | * @return array|string If an array of values is passed for either of the arguments, then the returned result |
77 | 77 | * will also be an array with matching dimensions |
78 | 78 | */ |
79 | - public static function FIXEDFORMAT(mixed $value, mixed $decimals = 2, mixed $noCommas = false): array|string |
|
79 | + public static function FIXEDFORMAT(mixed $value, mixed $decimals = 2, mixed $noCommas = false): array | string |
|
80 | 80 | { |
81 | 81 | if (is_array($value) || is_array($decimals) || is_array($noCommas)) { |
82 | 82 | return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $decimals, $noCommas); |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | * @return array|string If an array of values is passed for either of the arguments, then the returned result |
117 | 117 | * will also be an array with matching dimensions |
118 | 118 | */ |
119 | - public static function TEXTFORMAT(mixed $value, mixed $format): array|string |
|
119 | + public static function TEXTFORMAT(mixed $value, mixed $format): array | string |
|
120 | 120 | { |
121 | 121 | if (is_array($value) || is_array($format)) { |
122 | 122 | return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $format); |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | * @return array|string If an array of values is passed for either of the arguments, then the returned result |
224 | 224 | * will also be an array with matching dimensions |
225 | 225 | */ |
226 | - public static function valueToText(mixed $value, mixed $format = false): array|string |
|
226 | + public static function valueToText(mixed $value, mixed $format = false): array | string |
|
227 | 227 | { |
228 | 228 | if (is_array($value) || is_array($format)) { |
229 | 229 | return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $format); |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | * @param mixed $groupSeparator A string with the group/thousands separator to use, defaults to locale defined value |
265 | 265 | * Or can be an array of values |
266 | 266 | */ |
267 | - public static function NUMBERVALUE(mixed $value = '', mixed $decimalSeparator = null, mixed $groupSeparator = null): array|string|float |
|
267 | + public static function NUMBERVALUE(mixed $value = '', mixed $decimalSeparator = null, mixed $groupSeparator = null): array | string | float |
|
268 | 268 | { |
269 | 269 | if (is_array($value) || is_array($decimalSeparator) || is_array($groupSeparator)) { |
270 | 270 | return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $decimalSeparator, $groupSeparator); |
@@ -37,7 +37,7 @@ |
||
37 | 37 | * @return array|string If an array of values is passed as the argument, then the returned result will also be an array |
38 | 38 | * with the same dimensions |
39 | 39 | */ |
40 | - public static function spaces(mixed $stringValue = ''): array|string |
|
40 | + public static function spaces(mixed $stringValue = ''): array | string |
|
41 | 41 | { |
42 | 42 | if (is_array($stringValue)) { |
43 | 43 | return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $stringValue); |