Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
38 | 8 | public function after(Parser $parser, TokensList $list, Token $token): void |
|
39 | { |
||
40 | // [some options] is going to be parsed first. |
||
41 | // |
||
42 | // There is a parser specified in `Parser::KEYWORD_PARSERS` |
||
43 | // which parses the name of the tables. |
||
44 | // |
||
45 | // Finally, we parse here [some more options] and that's all. |
||
46 | 8 | ++$list->idx; |
|
47 | 8 | $this->options->merge( |
|
|
|||
48 | 8 | OptionsArrays::parse( |
|
49 | 8 | $parser, |
|
50 | 8 | $list, |
|
51 | 8 | static::$statementOptions, |
|
52 | 8 | ), |
|
56 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.