public function CompositeExpression::getExpressionList in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/CompositeExpression.php \Doctrine\Common\Collections\Expr\CompositeExpression::getExpressionList()
Returns the list of expressions nested in this composite.
Return value
File
- vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ Expr/ CompositeExpression.php, line 70
Class
- CompositeExpression
- Expression of Expressions combined by AND or OR operation.
Namespace
Doctrine\Common\Collections\ExprCode
public function getExpressionList() {
return $this->expressions;
}