Failed Conditions
Pull Request — master (#4412)
by
unknown
22:45 queued 07:48
created
src/PhpSpreadsheet/Calculation/TextData/Search.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      *         If an array of values is passed for the $value or $chars arguments, then the returned result
26 26
      *            will also be an array with matching dimensions
27 27
      */
28
-    public static function sensitive(mixed $needle, mixed $haystack, mixed $offset = 1): array|string|int
28
+    public static function sensitive(mixed $needle, mixed $haystack, mixed $offset = 1): array | string | int
29 29
     {
30 30
         if (is_array($needle) || is_array($haystack) || is_array($offset)) {
31 31
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $needle, $haystack, $offset);
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      *         If an array of values is passed for the $value or $chars arguments, then the returned result
68 68
      *            will also be an array with matching dimensions
69 69
      */
70
-    public static function insensitive(mixed $needle, mixed $haystack, mixed $offset = 1): array|string|int
70
+    public static function insensitive(mixed $needle, mixed $haystack, mixed $offset = 1): array | string | int
71 71
     {
72 72
         if (is_array($needle) || is_array($haystack) || is_array($offset)) {
73 73
             return self::evaluateArrayArguments([self::class, __FUNCTION__], $needle, $haystack, $offset);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Financial/TreasuryBill.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Financial/Amortization.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Financial/Dollar.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Financial/Securities/Price.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Financial/Coupons.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
Calculation/Financial/CashFlow/Constant/Periodic/Payments.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
         mixed $presentValue,
30 30
         mixed $futureValue = 0,
31 31
         mixed $type = FinancialConstants::PAYMENT_END_OF_PERIOD
32
-    ): string|float {
32
+    ): string | float {
33 33
         $interestRate = Functions::flattenSingleValue($interestRate);
34 34
         $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods);
35 35
         $presentValue = Functions::flattenSingleValue($presentValue);
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         mixed $presentValue,
78 78
         mixed $futureValue = 0,
79 79
         mixed $type = FinancialConstants::PAYMENT_END_OF_PERIOD
80
-    ): string|float {
80
+    ): string | float {
81 81
         $interestRate = Functions::flattenSingleValue($interestRate);
82 82
         $period = Functions::flattenSingleValue($period);
83 83
         $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods);
Please login to merge, or discard this patch.
Calculation/Financial/CashFlow/Constant/Periodic/Cumulative.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         mixed $start,
38 38
         mixed $end,
39 39
         mixed $type = FinancialConstants::PAYMENT_END_OF_PERIOD
40
-    ): string|float|int {
40
+    ): string | float | int {
41 41
         $rate = Functions::flattenSingleValue($rate);
42 42
         $periods = Functions::flattenSingleValue($periods);
43 43
         $presentValue = Functions::flattenSingleValue($presentValue);
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
         mixed $start,
103 103
         mixed $end,
104 104
         mixed $type = FinancialConstants::PAYMENT_END_OF_PERIOD
105
-    ): string|float|int {
105
+    ): string | float | int {
106 106
         $rate = Functions::flattenSingleValue($rate);
107 107
         $periods = Functions::flattenSingleValue($periods);
108 108
         $presentValue = Functions::flattenSingleValue($presentValue);
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Financial/CashFlow/Constant/Periodic.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         mixed $payment = 0.0,
36 36
         mixed $presentValue = 0.0,
37 37
         mixed $type = FinancialConstants::PAYMENT_END_OF_PERIOD
38
-    ): string|float {
38
+    ): string | float {
39 39
         $rate = Functions::flattenSingleValue($rate);
40 40
         $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods);
41 41
         $payment = ($payment === null) ? 0.0 : Functions::flattenSingleValue($payment);
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
         mixed $payment = 0.0,
75 75
         mixed $futureValue = 0.0,
76 76
         mixed $type = FinancialConstants::PAYMENT_END_OF_PERIOD
77
-    ): string|float {
77
+    ): string | float {
78 78
         $rate = Functions::flattenSingleValue($rate);
79 79
         $numberOfPeriods = Functions::flattenSingleValue($numberOfPeriods);
80 80
         $payment = ($payment === null) ? 0.0 : Functions::flattenSingleValue($payment);
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
         float $presentValue,
181 181
         float $futureValue,
182 182
         int $type
183
-    ): string|float {
183
+    ): string | float {
184 184
         if ($rate != 0.0) {
185 185
             if ($presentValue == 0.0) {
186 186
                 return ExcelError::NAN();
Please login to merge, or discard this patch.