public function ExpressionBuilder::notIn in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/collections/lib/Doctrine/Common/Collections/ExpressionBuilder.php \Doctrine\Common\Collections\ExpressionBuilder::notIn()
Parameters
string $field:
mixed $values:
Return value
File
- vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ ExpressionBuilder.php, line 151
Class
- ExpressionBuilder
- Builder for Expressions in the {@link Selectable} interface.
Namespace
Doctrine\Common\CollectionsCode
public function notIn($field, array $values) {
return new Comparison($field, Comparison::NIN, new Value($values));
}