diff --git a/app/Plan/UseCases/CreatePlanRequest.php b/app/Plan/UseCases/CreatePlanRequest.php index 2af3e1e..d9e0669 100644 --- a/app/Plan/UseCases/CreatePlanRequest.php +++ b/app/Plan/UseCases/CreatePlanRequest.php @@ -5,8 +5,8 @@ namespace App\Plan\UseCases; class CreatePlanRequest { public function __construct( - public int $userId, - public int $textId, - public string $name, + public ?int $userId, + public ?int $textId, + public ?string $name, ) {} }