예제 #1
0
 /**
  * Creates an instance of binary expression node, representing the construction: subject not in set
  *
  * @param mixed $subject logical subject
  * @param array $set set of value the subject should match
  *
  * SQL example:
  * @code
  * // "type" NOT IN ("completed", "pending")
  * Expression::notIn("type", array("completed", "pending"));
  * @endcode
  * @return InSetExpression
  */
 static function notIn($subject, $set)
 {
     return new InSetExpression($subject, $set, InSetLogicalOperator::notIn());
 }