Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | class Unaccent extends BaseVariadicFunction |
||
15 | { |
||
16 | protected function getNodeMappingPattern(): array |
||
17 | { |
||
18 | return ['StringPrimary']; |
||
19 | } |
||
20 | |||
21 | protected function getFunctionName(): string |
||
22 | { |
||
23 | return 'unaccent'; |
||
24 | } |
||
25 | |||
26 | protected function getMinArgumentCount(): int |
||
27 | { |
||
28 | return 1; |
||
29 | } |
||
30 | |||
31 | protected function getMaxArgumentCount(): int |
||
34 | } |
||
35 | } |
||
36 |