public function ExpressionBuilder::andX in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/collections/lib/Doctrine/Common/Collections/ExpressionBuilder.php \Doctrine\Common\Collections\ExpressionBuilder::andX()
Parameters
mixed $x:
Return value
File
- vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ ExpressionBuilder.php, line 43
Class
- ExpressionBuilder
- Builder for Expressions in the {@link Selectable} interface.
Namespace
Doctrine\Common\CollectionsCode
public function andX($x = null) {
return new CompositeExpression(CompositeExpression::TYPE_AND, func_get_args());
}