You are here

public function ClosureExpressionVisitor::walkValue in Plug 7

Converts a value expression into the target query language part.

Parameters

Value $value:

Return value

mixed

Overrides ExpressionVisitor::walkValue

File

lib/doctrine/collections/lib/Doctrine/Common/Collections/Expr/ClosureExpressionVisitor.php, line 166

Class

ClosureExpressionVisitor
Walks an expression graph and turns it into a PHP closure.

Namespace

Doctrine\Common\Collections\Expr

Code

public function walkValue(Value $value) {
  return $value
    ->getValue();
}