add set persistence

This commit is contained in:
Yisroel Baum 2026-08-03 20:22:58 +03:00
parent 4ac01460fd
commit 5b9df7d02a
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
7 changed files with 167 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<?php
namespace App\Set;
interface SetRepository
{
public function create(CreateSetDto $dto): Set;
/**
* @return list<Set>
*/
public function all(): array;
}