Esempio n. 1
0
 /**
  * Add a IN condition
  * 
  * @param string $field     Field name to filter
  * @param array $values     Array or comma separated list of values to check if present in field
  * @param string $type      [optional] Type of request AND or OR. Default is 'AND'
  * @return f_db_Delete      Current instance of f_db_Delete
  */
 public function whereIn($field, $values, $type = 'AND')
 {
     return parent::whereIn($field, $values, $type);
 }