예제 #1
0
 /**
  * Add an "or where not null" clause to the query.
  *
  * @param string $column
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function orWhereNotNull($column)
 {
     //Method inherited from \Illuminate\Database\Query\Builder
     return \October\Rain\Database\QueryBuilder::orWhereNotNull($column);
 }