add parent node to node, fix type of null

This commit is contained in:
Yisroel Baum 2026-02-21 22:15:24 +02:00
parent 483110f773
commit 021a2a6f15
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
5 changed files with 24 additions and 1 deletions

View file

@ -7,5 +7,6 @@ class CreateNodeRequest
public function __construct(
public int $textId,
public string $title,
public ?int $parentNodeId,
) {}
}