Doctrine


Doctrine\ORM\Query\AST\SubselectFromClause
/Doctrine/ORM/Query/AST/SubselectFromClause.php at line 35

Class SubselectFromClause

Class:SubselectFromClause - Superclass: Node
Node
⌊ SubselectFromClause

public class SubselectFromClause
extends Node

SubselectFromClause ::= "FROM" SubselectIdentificationVariableDeclaration {"," SubselectIdentificationVariableDeclaration}

License:
http://www.opensource.org/licenses/lgpl-license.php LGPL
See Also:
www.doctrine-project.org
Since:
2.0
Version:
$Revision: 3938 $
Author:
Guilherme Blanco
Jonathan Wage
Roman Borschel

Field Summary
mixed

$identificationVariableDeclarations

Constructor Summary

SubselectFromClause(mixed identificationVariableDeclarations)

Method Summary
void

dispatch(mixed sqlWalker, mixed walker, $walker )

Double-dispatch method, supposed to dispatch back to the walker.

Methods inherited from Doctrine\ORM\Query\AST\Node
dispatch, dump

Field Detail

/Doctrine/ORM/Query/AST/SubselectFromClause.php at line 37

identificationVariableDeclarations

public mixed $identificationVariableDeclarations = array()

Constructor Detail

/Doctrine/ORM/Query/AST/SubselectFromClause.php at line 39

SubselectFromClause

public SubselectFromClause(mixed identificationVariableDeclarations)

Method Detail

/Doctrine/ORM/Query/AST/SubselectFromClause.php at line 44

dispatch

public void dispatch(mixed sqlWalker, mixed walker, $walker )

Double-dispatch method, supposed to dispatch back to the walker.

Implementation is not mandatory for all nodes.


Doctrine