@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | * |
33 | 33 | * @return array|int|string The relative position of the found item |
34 | 34 | */ |
35 | - public static function MATCH(mixed $lookupValue, mixed $lookupArray, mixed $matchType = self::MATCHTYPE_LARGEST_VALUE): array|string|int|float |
|
35 | + public static function MATCH(mixed $lookupValue, mixed $lookupArray, mixed $matchType = self::MATCHTYPE_LARGEST_VALUE): array | string | int | float |
|
36 | 36 | { |
37 | 37 | if (is_array($lookupValue)) { |
38 | 38 | return self::evaluateArrayArgumentsIgnore([self::class, __FUNCTION__], 1, $lookupValue, $lookupArray, $matchType); |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | return ExcelError::NA(); |
79 | 79 | } |
80 | 80 | |
81 | - private static function matchFirstValue(array $lookupArray, mixed $lookupValue): int|string|null |
|
81 | + private static function matchFirstValue(array $lookupArray, mixed $lookupValue): int | string | null |
|
82 | 82 | { |
83 | 83 | if (is_string($lookupValue)) { |
84 | 84 | $valueIsString = true; |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | return null; |
152 | 152 | } |
153 | 153 | |
154 | - private static function matchSmallestValue(array $lookupArray, mixed $lookupValue): int|string|null |
|
154 | + private static function matchSmallestValue(array $lookupArray, mixed $lookupValue): int | string | null |
|
155 | 155 | { |
156 | 156 | $valueKey = null; |
157 | 157 | if (is_string($lookupValue)) { |
@@ -41,7 +41,7 @@ |
||
41 | 41 | * |
42 | 42 | * @return array|string An array containing a cell or range of cells, or a string on error |
43 | 43 | */ |
44 | - public static function OFFSET($cellAddress = null, mixed $rows = 0, mixed $columns = 0, mixed $height = null, mixed $width = null, ?Cell $cell = null): string|array |
|
44 | + public static function OFFSET($cellAddress = null, mixed $rows = 0, mixed $columns = 0, mixed $height = null, mixed $width = null, ?Cell $cell = null): string | array |
|
45 | 45 | { |
46 | 46 | $rows = Functions::flattenSingleValue($rows); |
47 | 47 | $columns = Functions::flattenSingleValue($columns); |
@@ -63,7 +63,7 @@ |
||
63 | 63 | * |
64 | 64 | * @return array|string An array containing a cell or range of cells, or a string on error |
65 | 65 | */ |
66 | - public static function INDIRECT($cellAddress, mixed $a1fmt, Cell $cell): string|array |
|
66 | + public static function INDIRECT($cellAddress, mixed $a1fmt, Cell $cell): string | array |
|
67 | 67 | { |
68 | 68 | [$baseCol, $baseRow] = Coordinate::indexesFromString($cell->getCoordinate()); |
69 | 69 |
@@ -24,7 +24,7 @@ discard block |
||
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 |
||
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 |
||
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); |
@@ -47,7 +47,7 @@ discard block |
||
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 |
||
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); |
@@ -49,7 +49,7 @@ discard block |
||
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 |
||
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); |
@@ -45,7 +45,7 @@ |
||
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); |
@@ -47,7 +47,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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); |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * |
37 | 37 | * @return float|string |
38 | 38 | */ |
39 | - public static function DB(mixed $cost, mixed $salvage, mixed $life, mixed $period, mixed $month = 12): string|float|int |
|
39 | + public static function DB(mixed $cost, mixed $salvage, mixed $life, mixed $period, mixed $month = 12): string | float | int |
|
40 | 40 | { |
41 | 41 | $cost = Functions::flattenSingleValue($cost); |
42 | 42 | $salvage = Functions::flattenSingleValue($salvage); |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | * |
151 | 151 | * @return float|string Result, or a string containing an error |
152 | 152 | */ |
153 | - public static function SLN(mixed $cost, mixed $salvage, mixed $life): string|float |
|
153 | + public static function SLN(mixed $cost, mixed $salvage, mixed $life): string | float |
|
154 | 154 | { |
155 | 155 | $cost = Functions::flattenSingleValue($cost); |
156 | 156 | $salvage = Functions::flattenSingleValue($salvage); |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | * |
184 | 184 | * @return float|string Result, or a string containing an error |
185 | 185 | */ |
186 | - public static function SYD(mixed $cost, mixed $salvage, mixed $life, mixed $period): string|float |
|
186 | + public static function SYD(mixed $cost, mixed $salvage, mixed $life, mixed $period): string | float |
|
187 | 187 | { |
188 | 188 | $cost = Functions::flattenSingleValue($cost); |
189 | 189 | $salvage = Functions::flattenSingleValue($salvage); |