예제 #1
0
파일: Query.php 프로젝트: abcarroll/DABL
 /**
  * @param mixed $column
  * @param mixed $value
  * @return Query
  */
 function orLike($column, $value)
 {
     $this->_where->orLike($column, $value);
     return $this;
 }