src/Dto/Input/RegisterDTO.php line 5

Open in your IDE?
  1. <?php
  2. namespace App\Dto\Input;
  3. class RegisterDTO implements DTOInterface
  4. {
  5.     public string $email;
  6.     public ?string $password null;
  7.     public ?string $code null;
  8. }