Passed
Push — master ( f9b1b7...3922d9 )
by
unknown
18:56 queued 11:14
created
src/PhpSpreadsheet/Calculation/Engineering/BesselI.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      *         If an array of numbers is passed as an argument, then the returned result will also be an array
36 36
      *            with the same dimensions
37 37
      */
38
-    public static function BESSELI(mixed $x, mixed $ord): array|string|float
38
+    public static function BESSELI(mixed $x, mixed $ord): array | string | float
39 39
     {
40 40
         if (is_array($x) || is_array($ord)) {
41 41
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $x, $ord);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Engineering/BesselY.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      *         If an array of numbers is passed as an argument, then the returned result will also be an array
32 32
      *            with the same dimensions
33 33
      */
34
-    public static function BESSELY(mixed $x, mixed $ord): array|string|float
34
+    public static function BESSELY(mixed $x, mixed $ord): array | string | float
35 35
     {
36 36
         if (is_array($x) || is_array($ord)) {
37 37
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $x, $ord);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical/Distributions/LogNormal.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
      *            accuracy if I can get my head round the mathematics
115 115
      *            (as described at) http://home.online.no/~pjacklam/notes/invnorm/
116 116
      */
117
-    public static function inverse(mixed $probability, mixed $mean, mixed $stdDev): array|string|float
117
+    public static function inverse(mixed $probability, mixed $mean, mixed $stdDev): array | string | float
118 118
     {
119 119
         if (is_array($probability) || is_array($mean) || is_array($stdDev)) {
120 120
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $probability, $mean, $stdDev);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical/Distributions/Poisson.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      *         If an array of numbers is passed as an argument, then the returned result will also be an array
30 30
      *            with the same dimensions
31 31
      */
32
-    public static function distribution(mixed $value, mixed $mean, mixed $cumulative): array|string|float
32
+    public static function distribution(mixed $value, mixed $mean, mixed $cumulative): array | string | float
33 33
     {
34 34
         if (is_array($value) || is_array($mean) || is_array($cumulative)) {
35 35
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $mean, $cumulative);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical/Distributions/StandardNormal.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
      *         If an array of numbers is passed as an argument, then the returned result will also be an array
95 95
      *            with the same dimensions
96 96
      */
97
-    public static function gauss(mixed $value): array|string|float
97
+    public static function gauss(mixed $value): array | string | float
98 98
     {
99 99
         if (is_array($value)) {
100 100
             return self::evaluateSingleArgumentArray([self::class, __FUNCTION__], $value);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical/Distributions/Weibull.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      *         If an array of numbers is passed as an argument, then the returned result will also be an array
30 30
      *            with the same dimensions
31 31
      */
32
-    public static function distribution(mixed $value, mixed $alpha, mixed $beta, mixed $cumulative): array|string|float
32
+    public static function distribution(mixed $value, mixed $alpha, mixed $beta, mixed $cumulative): array | string | float
33 33
     {
34 34
         if (is_array($value) || is_array($alpha) || is_array($beta) || is_array($cumulative)) {
35 35
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $alpha, $beta, $cumulative);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical/Distributions/Normal.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      *         If an array of numbers is passed as an argument, then the returned result will also be an array
34 34
      *            with the same dimensions
35 35
      */
36
-    public static function distribution(mixed $value, mixed $mean, mixed $stdDev, mixed $cumulative): array|string|float
36
+    public static function distribution(mixed $value, mixed $mean, mixed $stdDev, mixed $cumulative): array | string | float
37 37
     {
38 38
         if (is_array($value) || is_array($mean) || is_array($stdDev) || is_array($cumulative)) {
39 39
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $mean, $stdDev, $cumulative);
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      *         If an array of numbers is passed as an argument, then the returned result will also be an array
76 76
      *            with the same dimensions
77 77
      */
78
-    public static function inverse(mixed $probability, mixed $mean, mixed $stdDev): array|string|float
78
+    public static function inverse(mixed $probability, mixed $mean, mixed $stdDev): array | string | float
79 79
     {
80 80
         if (is_array($probability) || is_array($mean) || is_array($stdDev)) {
81 81
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $probability, $mean, $stdDev);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical/Percentiles.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
      *
75 75
      * @return float|string (string if result is an error)
76 76
      */
77
-    public static function PERCENTRANK(mixed $valueSet, mixed $value, mixed $significance = 3): string|float
77
+    public static function PERCENTRANK(mixed $valueSet, mixed $value, mixed $significance = 3): string | float
78 78
     {
79 79
         $valueSet = Functions::flattenArray($valueSet);
80 80
         $value = Functions::flattenSingleValue($value);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical/Variances.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      *
20 20
      * @return float|string (string if result is an error)
21 21
      */
22
-    public static function VAR(mixed ...$args): float|string
22
+    public static function VAR(mixed ...$args): float | string
23 23
     {
24 24
         $returnValue = ExcelError::DIV0();
25 25
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      *
62 62
      * @return float|string (string if result is an error)
63 63
      */
64
-    public static function VARA(mixed ...$args): string|float
64
+    public static function VARA(mixed ...$args): string | float
65 65
     {
66 66
         $returnValue = ExcelError::DIV0();
67 67
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      *
108 108
      * @return float|string (string if result is an error)
109 109
      */
110
-    public static function VARP(mixed ...$args): float|string
110
+    public static function VARP(mixed ...$args): float | string
111 111
     {
112 112
         // Return value
113 113
         $returnValue = ExcelError::DIV0();
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
      *
151 151
      * @return float|string (string if result is an error)
152 152
      */
153
-    public static function VARPA(mixed ...$args): string|float
153
+    public static function VARPA(mixed ...$args): string | float
154 154
     {
155 155
         $returnValue = ExcelError::DIV0();
156 156
 
Please login to merge, or discard this patch.