| Total Complexity | 3 | 
| Total Lines | 20 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 18 | class ArrayAgg extends BaseOrderableFunction | ||
| 19 | { | ||
| 20 | protected function customizeFunction(): void | ||
| 21 |     { | ||
| 22 |         $this->setFunctionPrototype('array_agg(%s%s)'); | ||
| 23 | } | ||
| 24 | |||
| 25 | protected function parseFunction(Parser $parser): void | ||
| 26 |     { | ||
| 27 | $this->expression = $parser->StringPrimary(); | ||
| 28 | } | ||
| 29 | |||
| 30 | public function getSql(SqlWalker $sqlWalker): string | ||
| 38 | } | ||
| 39 | } | ||
| 40 |