13 lines
171 B
PHP
13 lines
171 B
PHP
<?php
|
|
|
|
namespace App\Set;
|
|
|
|
interface SetRepository
|
|
{
|
|
public function find(int $id): ?Set;
|
|
|
|
/**
|
|
* @return Set[]
|
|
*/
|
|
public function getAll(): array;
|
|
}
|