Skip to content

Commit

Permalink
Update param doc for whereNotNull() (#30055)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmorbitzer authored and taylorotwell committed Sep 20, 2019
1 parent e7b2e53 commit 3ec56b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Illuminate/Database/Query/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -1026,13 +1026,13 @@ public function orWhereNull($column)
/**
* Add a "where not null" clause to the query.
*
* @param string $column
* @param string|array $columns
* @param string $boolean
* @return \Illuminate\Database\Query\Builder|static
*/
public function whereNotNull($column, $boolean = 'and')
public function whereNotNull($columns, $boolean = 'and')
{
return $this->whereNull($column, $boolean, true);
return $this->whereNull($columns, $boolean, true);
}

/**
Expand Down

0 comments on commit 3ec56b8

Please sign in to comment.