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