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