Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | class Rand extends FunctionNode |
||
21 | { |
||
22 | /** |
||
23 | * @{inheritDoc} |
||
24 | */ |
||
25 | public function parse(Parser $parser) |
||
26 | { |
||
27 | $parser->match(Lexer::T_IDENTIFIER); |
||
28 | $parser->match(Lexer::T_OPEN_PARENTHESIS); |
||
29 | $parser->match(Lexer::T_CLOSE_PARENTHESIS); |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @{inheritDoc} |
||
34 | */ |
||
35 | public function getSql(SqlWalker $sqlWalker) |
||
38 | } |
||
39 | } |
||
40 |