@@ -52,7 +52,7 @@ |
||
52 | 52 | 'be189a7e2711cdf2a7f6275c60cbc7e2', |
53 | 53 | ]; |
54 | 54 | |
55 | - private float|int|null $paddingAmountExact; |
|
55 | + private float | int | null $paddingAmountExact; |
|
56 | 56 | |
57 | 57 | protected function setUp(): void |
58 | 58 | { |
@@ -49,7 +49,7 @@ |
||
49 | 49 | * |
50 | 50 | * @return int|string Lowest Common Multiplier, or a string containing an error |
51 | 51 | */ |
52 | - public static function evaluate(mixed ...$args): int|string |
|
52 | + public static function evaluate(mixed ...$args): int | string |
|
53 | 53 | { |
54 | 54 | try { |
55 | 55 | $arrayArgs = []; |
@@ -20,7 +20,7 @@ |
||
20 | 20 | * If an array of numbers 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 evaluate(mixed $number): array|string|int|float |
|
23 | + public static function evaluate(mixed $number): array | string | int | float |
|
24 | 24 | { |
25 | 25 | if (is_array($number)) { |
26 | 26 | return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | * If an array of numbers 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 toDegrees(mixed $number): array|string|float |
|
23 | + public static function toDegrees(mixed $number): array | string | float |
|
24 | 24 | { |
25 | 25 | if (is_array($number)) { |
26 | 26 | return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * If an array of numbers 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 toRadians(mixed $number): array|string|float |
|
49 | + public static function toRadians(mixed $number): array | string | float |
|
50 | 50 | { |
51 | 51 | if (is_array($number)) { |
52 | 52 | return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * If an array of numbers is passed as the argument, then the returned result will also be an array |
26 | 26 | * with the same dimensions |
27 | 27 | */ |
28 | - public static function withoutRepetition(mixed $numObjs, mixed $numInSet): array|string|float |
|
28 | + public static function withoutRepetition(mixed $numObjs, mixed $numInSet): array | string | float |
|
29 | 29 | { |
30 | 30 | if (is_array($numObjs) || is_array($numInSet)) { |
31 | 31 | return self::evaluateArrayArguments([self::class, __FUNCTION__], $numObjs, $numInSet); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * If an array of numbers is passed as the argument, then the returned result will also be an array |
60 | 60 | * with the same dimensions |
61 | 61 | */ |
62 | - public static function withRepetition(mixed $numObjs, mixed $numInSet): array|int|string|float |
|
62 | + public static function withRepetition(mixed $numObjs, mixed $numInSet): array | int | string | float |
|
63 | 63 | { |
64 | 64 | if (is_array($numObjs) || is_array($numInSet)) { |
65 | 65 | return self::evaluateArrayArguments([self::class, __FUNCTION__], $numObjs, $numInSet); |
@@ -825,7 +825,7 @@ |
||
825 | 825 | * If an array of numbers is passed as an argument, then the returned result will also be an array |
826 | 826 | * with the same dimensions |
827 | 827 | */ |
828 | - public static function evaluate(mixed $aValue, mixed $style = 0): array|string |
|
828 | + public static function evaluate(mixed $aValue, mixed $style = 0): array | string |
|
829 | 829 | { |
830 | 830 | if (is_array($aValue) || is_array($style)) { |
831 | 831 | return self::evaluateArrayArguments([self::class, __FUNCTION__], $aValue, $style); |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * If an array of numbers is passed as the argument, then the returned result will also be an array |
49 | 49 | * with the same dimensions |
50 | 50 | */ |
51 | - public static function tanh(mixed $angle): array|string|float |
|
51 | + public static function tanh(mixed $angle): array | string | float |
|
52 | 52 | { |
53 | 53 | if (is_array($angle)) { |
54 | 54 | return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | * If an array of numbers is passed as one of the arguments, then the returned result will also be an array |
140 | 140 | * with the same dimensions |
141 | 141 | */ |
142 | - public static function atan2(mixed $xCoordinate, mixed $yCoordinate): array|string|float |
|
142 | + public static function atan2(mixed $xCoordinate, mixed $yCoordinate): array | string | float |
|
143 | 143 | { |
144 | 144 | if (is_array($xCoordinate) || is_array($yCoordinate)) { |
145 | 145 | return self::evaluateArrayArguments([self::class, __FUNCTION__], $xCoordinate, $yCoordinate); |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * If an array of numbers is passed as the argument, then the returned result will also be an array |
22 | 22 | * with the same dimensions |
23 | 23 | */ |
24 | - public static function cos(mixed $number): array|string|float |
|
24 | + public static function cos(mixed $number): array | string | float |
|
25 | 25 | { |
26 | 26 | if (is_array($number)) { |
27 | 27 | return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | * If an array of numbers is passed as the argument, then the returned result will also be an array |
48 | 48 | * with the same dimensions |
49 | 49 | */ |
50 | - public static function cosh(mixed $number): array|string|float |
|
50 | + public static function cosh(mixed $number): array | string | float |
|
51 | 51 | { |
52 | 52 | if (is_array($number)) { |
53 | 53 | return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $number); |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * If an array of numbers is passed as the argument, then the returned result will also be an array |
22 | 22 | * with the same dimensions |
23 | 23 | */ |
24 | - public static function sin(mixed $angle): array|string|float |
|
24 | + public static function sin(mixed $angle): array | string | float |
|
25 | 25 | { |
26 | 26 | if (is_array($angle)) { |
27 | 27 | return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | * If an array of numbers is passed as the argument, then the returned result will also be an array |
48 | 48 | * with the same dimensions |
49 | 49 | */ |
50 | - public static function sinh(mixed $angle): array|string|float |
|
50 | + public static function sinh(mixed $angle): array | string | float |
|
51 | 51 | { |
52 | 52 | if (is_array($angle)) { |
53 | 53 | return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $angle); |