1 | <?php |
||
26 | class MaintenanceStatement extends Statement |
||
27 | { |
||
28 | /** |
||
29 | * Tables maintained. |
||
30 | * |
||
31 | * @var Expression[] |
||
32 | */ |
||
33 | public $tables; |
||
34 | |||
35 | /** |
||
36 | * Function called after the token was processed. |
||
37 | * |
||
38 | * Parses the additional options from the end. |
||
39 | * |
||
40 | * @param Parser $parser the instance that requests parsing |
||
41 | * @param TokensList $list the list of tokens to be parsed |
||
42 | * @param Token $token the token that is being parsed |
||
43 | */ |
||
44 | 4 | public function after(Parser $parser, TokensList $list, Token $token) |
|
61 | } |
||
62 |