Rabbi_Gerzi/backend/app/Set/SetRepository.php
2026-05-25 08:25:17 +03:00

13 lines
171 B
PHP

<?php
namespace App\Set;
interface SetRepository
{
public function find(int $id): ?Set;
/**
* @return Set[]
*/
public function getAll(): array;
}