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