add set persistence
This commit is contained in:
parent
4ac01460fd
commit
5b9df7d02a
7 changed files with 167 additions and 0 deletions
13
backend/app/Set/SetRepository.php
Normal file
13
backend/app/Set/SetRepository.php
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace App\Set;
|
||||
|
||||
interface SetRepository
|
||||
{
|
||||
public function create(CreateSetDto $dto): Set;
|
||||
|
||||
/**
|
||||
* @return list<Set>
|
||||
*/
|
||||
public function all(): array;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue