PHP Class SqlParser\Statements\MaintenanceStatement

They follow the syntax: STMT [some options] tbl_name [, tbl_name] ... [some more options]
Author: Dan Ungureanu ([email protected])
Inheritance: extends SqlParser\Statement
Show file Open project: phpmyadmin/sql-parser

Public Properties

Property Type Description
$tables SqlParser\Components\Expression[] Tables maintained.

Public Methods

Method Description
after ( Parser $parser, TokensList $list, Token $token ) : void Function called after the token was processed.

Method Details

after() public method

Parses the additional options from the end.
public after ( Parser $parser, TokensList $list, Token $token ) : void
$parser SqlParser\Parser The instance that requests parsing.
$list SqlParser\TokensList The list of tokens to be parsed.
$token SqlParser\Token The token that is being parsed.
return void

Property Details

$tables public property

Tables maintained.
public Expression[],SqlParser\Components $tables
return SqlParser\Components\Expression[]