public function ClosureExpressionVisitor::walkValue in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/ClosureExpressionVisitor.php \Doctrine\Common\Collections\Expr\ClosureExpressionVisitor::walkValue()
Converts a value expression into the target query language part.
Parameters
Value $value:
Return value
mixed
Overrides ExpressionVisitor::walkValue
File
- vendor/
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\ExprCode
public function walkValue(Value $value) {
return $value
->getValue();
}