Skip to content

Commit

Permalink
Add override for type-hints
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed Dec 14, 2023
1 parent 3a6c253 commit a8dd2a3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Query/Model/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,14 @@ public function findMany(array|string $dns, array|string $columns = ['*']): Coll
return parent::findMany($dns, $columns);
}

/**
* {@inheritDoc}
*/
public function findManyBy(string $attribute, array $values = [], array|string $columns = ['*']): Collection
{
return parent::findManyBy($attribute, $values, $columns);
}

/**
* Finds a record using ambiguous name resolution.
*/
Expand Down

0 comments on commit a8dd2a3

Please sign in to comment.