SelectClause
class SelectClause extends Node (View source)
SelectClause = "SELECT" ["DISTINCT"] SelectExpression {"," SelectExpression}
Properties
bool | $isDistinct | ||
array | $selectExpressions |
Methods
string
dispatch($sqlWalker)
Double-dispatch method, supposed to dispatch back to the walker.
string
__toString()
Dumps the AST Node into a string representation for information purpose only.
from Node
__construct(array $selectExpressions, bool $isDistinct)
No description
Details
at line 56
string
dispatch($sqlWalker)
Double-dispatch method, supposed to dispatch back to the walker.
Implementation is not mandatory for all nodes.
string
__toString()
Dumps the AST Node into a string representation for information purpose only.