Exemple #1
0
 /**
  * Add a "where not null" clause to the query.
  *
  * @param string $column
  * @param string $boolean
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function whereNotNull($column, $boolean = 'and')
 {
     //Method inherited from \Illuminate\Database\Query\Builder
     return \October\Rain\Database\QueryBuilder::whereNotNull($column, $boolean);
 }