Rabbi_Gerzi/backend/app/Element/ElementRepository.php
2026-05-25 21:42:38 +03:00

19 lines
358 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;
public function findRootBySet(DomainSet $set): ?Element;
/**
* @return Element[]
*/
public function findBySet(DomainSet $set): array;
}