17 lines
263 B
PHP
17 lines
263 B
PHP
<?php
|
|
|
|
namespace App\Node;
|
|
|
|
use App\Node\Node;
|
|
|
|
interface NodeRepository
|
|
{
|
|
public function create(CreateNodeDto $dto): Node;
|
|
|
|
public function find(int $id): ?Node;
|
|
|
|
/**
|
|
* @return Node[]
|
|
*/
|
|
public function findByTextId(int $id): array;
|
|
}
|