Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
44 | 4 | public function after(Parser $parser, TokensList $list, Token $token) |
|
45 | { |
||
46 | // [some options] is going to be parsed first. |
||
47 | // |
||
48 | // There is a parser specified in `Parser::$KEYWORD_PARSERS` |
||
49 | // which parses the name of the tables. |
||
50 | // |
||
51 | // Finally, we parse here [some more options] and that's all. |
||
52 | 4 | ++$list->idx; |
|
53 | 4 | $this->options->merge( |
|
54 | 4 | OptionsArray::parse( |
|
55 | 4 | $parser, |
|
56 | 4 | $list, |
|
57 | static::$OPTIONS |
||
58 | 4 | ) |
|
59 | 4 | ); |
|
60 | 4 | } |
|
61 | } |
||
62 |