Skip to content

Commit

Permalink
fix: correct query builder stub
Browse files Browse the repository at this point in the history
  • Loading branch information
canvural committed Jul 28, 2020
1 parent ba092de commit d8d8b41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stubs/QueryBuilder.stub
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ class Builder
/**
* Add a basic where clause to the query.
*
* @param \Closure|string|array<string> $column
* @param \Closure|string|array<string, mixed> $column
* @param mixed $operator
* @param mixed $value
* @param string $boolean
Expand Down Expand Up @@ -295,7 +295,7 @@ class Builder
/**
* Add an "or where" clause to the query.
*
* @param \Closure|string|array<string> $column
* @param \Closure|string|array<string, mixed> $column
* @param mixed $operator
* @param mixed $value
* @return $this
Expand Down Expand Up @@ -1284,7 +1284,7 @@ class Builder
/**
* Insert a new record into the database.
*
* @param array<string, mixed> $values
* @param array<mixed> $values
* @return bool
*/
public function insert(array $values)
Expand Down

0 comments on commit d8d8b41

Please sign in to comment.