make BulkCreateNodesRequest properties nullable
This commit is contained in:
parent
5de15ef52d
commit
337017fc52
1 changed files with 4 additions and 4 deletions
|
|
@ -5,9 +5,9 @@ namespace App\Node\UseCases;
|
|||
class BulkCreateNodesRequest
|
||||
{
|
||||
public function __construct(
|
||||
public int $textId,
|
||||
public int $parentNodeId,
|
||||
public string $titlePrefix,
|
||||
public int $count,
|
||||
public ?int $textId,
|
||||
public ?int $parentNodeId,
|
||||
public ?string $titlePrefix,
|
||||
public ?int $count,
|
||||
) {}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue