15 lines
224 B
PHP
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;
|
|
}
|