Completed
Push — master ( 02671e...1825c7 )
by
unknown
34s queued 24s
created
src/PhpSpreadsheet/Calculation/Statistical/StandardDeviations.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      *
38 38
      * @param mixed ...$args Data values
39 39
      */
40
-    public static function STDEVA(mixed ...$args): float|string
40
+    public static function STDEVA(mixed ...$args): float | string
41 41
     {
42 42
         $result = Variances::VARA(...$args);
43 43
         if (!is_numeric($result)) {
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      *
58 58
      * @param mixed ...$args Data values
59 59
      */
60
-    public static function STDEVP(mixed ...$args): float|string
60
+    public static function STDEVP(mixed ...$args): float | string
61 61
     {
62 62
         $result = Variances::VARP(...$args);
63 63
         if (!is_numeric($result)) {
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      *
78 78
      * @param mixed ...$args Data values
79 79
      */
80
-    public static function STDEVPA(mixed ...$args): float|string
80
+    public static function STDEVPA(mixed ...$args): float | string
81 81
     {
82 82
         $result = Variances::VARPA(...$args);
83 83
         if (!is_numeric($result)) {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical/Maximum.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      *
19 19
      * @param mixed ...$args Data values
20 20
      */
21
-    public static function max(mixed ...$args): float|int|string
21
+    public static function max(mixed ...$args): float | int | string
22 22
     {
23 23
         $returnValue = null;
24 24
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      *
56 56
      * @param mixed ...$args Data values
57 57
      */
58
-    public static function maxA(mixed ...$args): float|int|string
58
+    public static function maxA(mixed ...$args): float | int | string
59 59
     {
60 60
         $returnValue = null;
61 61
 
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical/Averages/Mean.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      *
24 24
      * @param mixed ...$args Data values
25 25
      */
26
-    public static function geometric(mixed ...$args): float|int|string
26
+    public static function geometric(mixed ...$args): float | int | string
27 27
     {
28 28
         $aArgs = Functions::flattenArray($args);
29 29
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      *
50 50
      * @param mixed ...$args Data values
51 51
      */
52
-    public static function harmonic(mixed ...$args): string|float|int
52
+    public static function harmonic(mixed ...$args): string | float | int
53 53
     {
54 54
         // Loop through arguments
55 55
         $aArgs = Functions::flattenArray($args);
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      *
91 91
      * @param mixed $args Data values
92 92
      */
93
-    public static function trim(mixed ...$args): float|string
93
+    public static function trim(mixed ...$args): float | string
94 94
     {
95 95
         $aArgs = Functions::flattenArray($args);
96 96
 
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical/Distributions/NewtonRaphson.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         $this->callback = $callback;
18 18
     }
19 19
 
20
-    public function execute(float $probability): string|int|float
20
+    public function execute(float $probability): string | int | float
21 21
     {
22 22
         $xLo = 100;
23 23
         $xHi = 0;
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Database/DProduct.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      *                                        the column label in which you specify a condition for the
31 31
      *                                        column.
32 32
      */
33
-    public static function evaluate(array $database, array|null|int|string $field, array $criteria): string|float
33
+    public static function evaluate(array $database, array | null | int | string $field, array $criteria): string | float
34 34
     {
35 35
         $field = self::fieldExtract($database, $field);
36 36
         if ($field === null) {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Database/DAverage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      *                              the column label in which you specify a condition for the
31 31
      *                              column.
32 32
      */
33
-    public static function evaluate(array $database, array|null|int|string $field, array $criteria): string|int|float
33
+    public static function evaluate(array $database, array | null | int | string $field, array $criteria): string | int | float
34 34
     {
35 35
         $field = self::fieldExtract($database, $field);
36 36
         if ($field === null) {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Database/DStDev.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
      *                                        the column label in which you specify a condition for the
32 32
      *                                        column.
33 33
      */
34
-    public static function evaluate(array $database, array|null|int|string $field, array $criteria): float|string
34
+    public static function evaluate(array $database, array | null | int | string $field, array $criteria): float | string
35 35
     {
36 36
         $field = self::fieldExtract($database, $field);
37 37
         if ($field === null) {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Database/DSum.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      *                                        the column label in which you specify a condition for the
31 31
      *                                        column.
32 32
      */
33
-    public static function evaluate(array $database, array|null|int|string $field, array $criteria, bool $returnNull = false): null|float|string
33
+    public static function evaluate(array $database, array | null | int | string $field, array $criteria, bool $returnNull = false): null | float | string
34 34
     {
35 35
         $field = self::fieldExtract($database, $field);
36 36
         if ($field === null) {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Database/DCountA.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      *                                        the column label in which you specify a condition for the
31 31
      *                                        column.
32 32
      */
33
-    public static function evaluate(array $database, array|null|int|string $field, array $criteria): string|int
33
+    public static function evaluate(array $database, array | null | int | string $field, array $criteria): string | int
34 34
     {
35 35
         $field = self::fieldExtract($database, $field);
36 36
         if ($field === null) {
Please login to merge, or discard this patch.