Attainly/backend/app/Element/ElementRepository.php

10 lines
169 B
PHP

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