add getAll method to text repo

This commit is contained in:
Yisroel Baum 2026-04-12 21:54:31 +03:00
parent e4001b564a
commit 878e4840a2
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -10,4 +10,9 @@ interface TextRepository
public function create(CreateTextDto $dto): Text;
public function find(int $id): ?Text;
/**
* @return Text[]
*/
public function getAll(): array;
}