Changeset 3534
- Timestamp:
- 01/17/08 12:37:49 (18 months ago)
- Files:
-
- 1 modified
-
branches/0.9/lib/Doctrine/Query/Abstract.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.9/lib/Doctrine/Query/Abstract.php
r3503 r3534 106 106 107 107 /** 108 * whereNotIn 109 * adds NOT IN condition to the query WHERE part 110 * 111 * @param string $expr the operand of the NOT IN 112 * @param mixed $params an array of parameters or a simple scalar 113 * @return Doctrine_Query 114 */ 115 public function whereNotIn($expr, $params = array()) 116 { 117 return $this->whereIn($expr, $params, true); 118 } 119 120 /** 108 121 * addGroupBy 109 122 * adds fields to the GROUP BY part of the query