Total Complexity | 8 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
15 | abstract class BaseOrderableFunction extends BaseFunction |
||
16 | { |
||
17 | protected Node $expression; |
||
18 | protected ?OrderByClause $orderByClause = null; |
||
19 | |||
20 | public function parse(Parser $parser): void |
||
37 | } |
||
38 | |||
39 | abstract protected function parseFunction(Parser $parser): void; |
||
40 | |||
41 | protected function getOptionalOrderByClause(SqlWalker $sqlWalker): string |
||
46 |