add text to node

This commit is contained in:
Yisroel Baum 2026-02-20 11:58:13 +02:00
parent e55133ceac
commit c0994d806e
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
5 changed files with 17 additions and 0 deletions

View file

@ -11,6 +11,7 @@ class FakeNodeRepository implements NodeRepository
public function create(CreateNodeDto $dto): Node
{
return new Node(
text: $dto->text,
title: $dto->title,
);
}