15 lines
225 B
PHP
15 lines
225 B
PHP
<?php
|
|
|
|
namespace App\Set;
|
|
|
|
interface SetRepository
|
|
{
|
|
public function create(CreateSetDto $dto): Set;
|
|
|
|
public function find(int $id): ?Set;
|
|
|
|
/**
|
|
* @return list<Set>
|
|
*/
|
|
public function all(): array;
|
|
}
|