Total Complexity | 1 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
20 | class MaintenanceStatement extends Statement |
||
21 | { |
||
22 | /** |
||
23 | * Tables maintained. |
||
24 | * |
||
25 | * @var Expression[]|null |
||
26 | */ |
||
27 | public array|null $tables = null; |
||
28 | |||
29 | /** |
||
30 | * Function called after the token was processed. |
||
31 | * |
||
32 | * Parses the additional options from the end. |
||
33 | * |
||
34 | * @param Parser $parser the instance that requests parsing |
||
35 | * @param TokensList $list the list of tokens to be parsed |
||
36 | * @param Token $token the token that is being parsed |
||
37 | */ |
||
38 | 8 | public function after(Parser $parser, TokensList $list, Token $token): void |
|
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.