Documentation

Join extends Node
in package

Join ::= ["LEFT" ["OUTER"] | "INNER"] "JOIN" JoinAssociationPathExpression ["AS"] AliasIdentificationVariable [("ON" | "WITH") ConditionalExpression]

Tags
link
www.doctrine-project.org

Table of Contents

Constants

JOIN_TYPE_INNER  = 3
JOIN_TYPE_LEFT  = 1
JOIN_TYPE_LEFTOUTER  = 2

Properties

$conditionalExpression  : ConditionalExpression|null
$joinAssociationDeclaration  : Node|null
$joinType  : int

Methods

__construct()  : mixed
__toString()  : string
Dumps the AST Node into a string representation for information purpose only.
dispatch()  : string
Double-dispatch method, supposed to dispatch back to the walker.
dump()  : string

Constants

JOIN_TYPE_INNER

public mixed JOIN_TYPE_INNER = 3

JOIN_TYPE_LEFT

public mixed JOIN_TYPE_LEFT = 1

JOIN_TYPE_LEFTOUTER

public mixed JOIN_TYPE_LEFTOUTER = 2

Properties

$joinAssociationDeclaration

public Node|null $joinAssociationDeclaration = null

$joinType

public int $joinType = self::JOIN_TYPE_INNER
Tags
psalm-var

self::JOIN_TYPE_*

Methods

__construct()

public __construct(int $joinType, Node $joinAssociationDeclaration) : mixed
Parameters
$joinType : int
$joinAssociationDeclaration : Node
Tags
psalm-param

self::JOIN_TYPE_* $joinType

__toString()

Dumps the AST Node into a string representation for information purpose only.

public __toString() : string
Return values
string

dispatch()

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

public dispatch(mixed $sqlWalker) : string
Parameters
$sqlWalker : mixed
Return values
string

dump()

public dump(mixed $value) : string
Parameters
$value : mixed
Return values
string

        
On this page

Search results