Ejemplo n.º 1
0
 public function where($column, $operator, $value = null, $enclosingQuotes = true)
 {
     if (is_null($value)) {
         $value = $operator;
         $operator = '=';
     }
     $this->_query->addWhereCondition($column, $operator, $value, $enclosingQuotes);
     return $this;
 }