Rabbi_Gerzi/backend/app/Set/SetRepository.php
2026-05-24 22:32:46 +03:00

15 lines
224 B
PHP

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