Rabbi_Gerzi/backend/app/Element/ElementRepository.php

17 lines
296 B
PHP

<?php
namespace App\Element;
use App\Set\Set as DomainSet;
interface ElementRepository
{
public function create(CreateElementDto $dto): Element;
public function find(int $id): ?Element;
/**
* @return Element[]
*/
public function findBySet(DomainSet $set): array;
}