Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ObjectRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function find(mixed $id): object|null;
* Finds all objects in the repository.
*
* @return array<int, object> The objects.
* @phpstan-return T[]
* @phpstan-return list<T>
*/
public function findAll(): array;

Expand All @@ -43,7 +43,7 @@ public function findAll(): array;
* @phpstan-param array<string, 'asc'|'desc'|'ASC'|'DESC'>|null $orderBy
*
* @return array<int, object> The objects.
* @phpstan-return T[]
* @phpstan-return list<T>
*
* @throws UnexpectedValueException
*/
Expand Down