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