10 lines
169 B
PHP
10 lines
169 B
PHP
<?php
|
|
|
|
namespace App\Element;
|
|
|
|
interface ElementRepository
|
|
{
|
|
public function create(CreateElementDto $dto): Element;
|
|
|
|
public function find(int $id): ?Element;
|
|
}
|