| Total Complexity | 5 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 18 | class JsonbBuildObject extends BaseVariadicFunction |
||
| 19 | { |
||
| 20 | 2 | protected function getNodeMappingPattern(): array |
|
| 21 | { |
||
| 22 | 2 | return ['StringPrimary']; |
|
| 23 | } |
||
| 24 | |||
| 25 | 2 | protected function customizeFunction(): void |
|
| 26 | { |
||
| 27 | 2 | $this->setFunctionPrototype('jsonb_build_object(%s)'); |
|
| 28 | } |
||
| 29 | |||
| 30 | 2 | protected function validateArguments(Node ...$arguments): void |
|
| 35 | } |
||
| 36 | } |
||
| 37 | } |
||
| 38 |