Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
12 | abstract class BaseArithmeticFunction extends BaseVariadicFunction |
||
13 | { |
||
14 | protected function getNodeMappingPattern(): array |
||
15 | { |
||
16 | return ['ArithmeticPrimary']; |
||
17 | } |
||
18 | |||
19 | protected function getMinArgumentCount(): int |
||
20 | { |
||
21 | return 1; |
||
22 | } |
||
23 | |||
24 | protected function getMaxArgumentCount(): int |
||
27 | } |
||
28 | } |
||
29 |