You are here

abstract public function ExpressionVisitor::walkValue in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/ExpressionVisitor.php \Doctrine\Common\Collections\Expr\ExpressionVisitor::walkValue()

Converts a value expression into the target query language part.

Parameters

Value $value:

Return value

mixed

1 call to ExpressionVisitor::walkValue()
ExpressionVisitor::dispatch in vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/ExpressionVisitor.php
Dispatches walking an expression to the appropriate handler.
1 method overrides ExpressionVisitor::walkValue()
ClosureExpressionVisitor::walkValue in vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/ClosureExpressionVisitor.php
Converts a value expression into the target query language part.

File

vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/ExpressionVisitor.php, line 46

Class

ExpressionVisitor
An Expression visitor walks a graph of expressions and turns them into a query for the underlying implementation.

Namespace

Doctrine\Common\Collections\Expr

Code

public abstract function walkValue(Value $value);