Illuminate\Database\Query\Builder::orWhereNotNull PHP Method

orWhereNotNull() public method

Add an "or where not null" clause to the query.
public orWhereNotNull ( string $column ) : Builder | static
$column string
return Builder | static
    public function orWhereNotNull($column)
    {
        return $this->whereNotNull($column, 'or');
    }

Usage Example

Exemplo n.º 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)
 {
     return \Illuminate\Database\Query\Builder::orWhereNotNull($column);
 }