コード例 #1
0
ファイル: _ide_helper.php プロジェクト: Smony/njphoto
 /**
  * Add an or where not between statement to the query.
  *
  * @param string $column
  * @param array $values
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function orWhereNotBetween($column, $values)
 {
     //Method inherited from \Illuminate\Database\Query\Builder
     return \October\Rain\Database\QueryBuilder::orWhereNotBetween($column, $values);
 }