Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
22 | class Lca extends BaseVariadicFunction |
||
23 | { |
||
24 | 3 | protected function getNodeMappingPattern(): array |
|
27 | } |
||
28 | |||
29 | 3 | protected function getFunctionName(): string |
|
30 | { |
||
31 | 3 | return 'lca'; |
|
32 | } |
||
33 | |||
34 | 3 | protected function getMinArgumentCount(): int |
|
35 | { |
||
36 | 3 | return 2; |
|
37 | } |
||
38 | |||
39 | 3 | protected function getMaxArgumentCount(): int |
|
42 | } |
||
43 | } |
||
44 |