@@ -337,10 +337,10 @@ discard block |
||
337 | 337 | } |
338 | 338 | |
339 | 339 | /** @var null|string[] */ |
340 | - private static ?array $functionReplaceFromExcel; |
|
340 | + private static ? array $functionReplaceFromExcel; |
|
341 | 341 | |
342 | 342 | /** @var null|string[] */ |
343 | - private static ?array $functionReplaceToLocale; |
|
343 | + private static ? array $functionReplaceToLocale; |
|
344 | 344 | |
345 | 345 | public function translateFormulaToLocale(string $formula): string |
346 | 346 | { |
@@ -376,10 +376,10 @@ discard block |
||
376 | 376 | } |
377 | 377 | |
378 | 378 | /** @var null|string[] */ |
379 | - protected static ?array $functionReplaceFromLocale; |
|
379 | + protected static ? array $functionReplaceFromLocale; |
|
380 | 380 | |
381 | 381 | /** @var null|string[] */ |
382 | - protected static ?array $functionReplaceToExcel; |
|
382 | + protected static ? array $functionReplaceToExcel; |
|
383 | 383 | |
384 | 384 | public function translateFormulaToEnglish(string $formula): string |
385 | 385 | { |
@@ -25,7 +25,7 @@ |
||
25 | 25 | * the column label in which you specify a condition for the |
26 | 26 | * column. |
27 | 27 | */ |
28 | - abstract public static function evaluate(array $database, array|null|int|string $field, array $criteria): null|float|int|string; |
|
28 | + abstract public static function evaluate(array $database, array | null | int | string $field, array $criteria): null | float | int | string; |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * fieldExtract. |