Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
14 | final class AvgFunction extends FunctionNode |
||
15 | { |
||
16 | /** @var AggregateExpression */ |
||
17 | private $aggregateExpression; |
||
18 | |||
19 | /** |
||
20 | * @inheritDoc |
||
21 | */ |
||
22 | public function getSql(SqlWalker $sqlWalker) : string |
||
23 | { |
||
24 | return $this->aggregateExpression->dispatch($sqlWalker); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @inheritDoc |
||
29 | */ |
||
30 | public function parse(Parser $parser) : void |
||
33 | } |
||
34 | } |
||
35 |