Skip to content

Commit

Permalink
Add php stan ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
marekrzytki committed May 20, 2024
1 parent 77033c7 commit d8e146d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Repository/RepositoryDecoratorTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ public function findAll(): array
/**
* @return array<int, object>
*/
/** @phpstan-ignore-next-line */
public function findBy(
array $criteria,
?array $orderBy = null,
?int $limit = null,
?int $offset = null,
$limit = null,
$offset = null,
): array {
return $this->decoratedRepository->findBy($criteria, $orderBy, $limit, $offset);
}
Expand Down

0 comments on commit d8e146d

Please sign in to comment.