add set elements

This commit is contained in:
Yisroel Baum 2026-05-24 22:32:46 +03:00
parent db35a97910
commit 2c4cdabc15
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
17 changed files with 497 additions and 0 deletions

View file

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