diff --git a/app/Text/TextRepository.php b/app/Text/TextRepository.php index a280407..d899bcf 100644 --- a/app/Text/TextRepository.php +++ b/app/Text/TextRepository.php @@ -10,4 +10,9 @@ interface TextRepository public function create(CreateTextDto $dto): Text; public function find(int $id): ?Text; + + /** + * @return Text[] + */ + public function getAll(): array; }