src/WebBundle/Form/UserRegistrationForm.php line 7

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace WebBundle\Form;
  4. final class UserRegistrationForm
  5. {
  6.     public ?string $email null;
  7.     public ?string $country null;
  8.     public ?string $plainPassword null;
  9.     public ?string $zip null;
  10.     public function getEmail(): ?string
  11.     {
  12.         return $this->email;
  13.     }
  14.     public function getCountry(): ?string
  15.     {
  16.         return $this->country;
  17.     }
  18.     public function getPlainPassword(): ?string
  19.     {
  20.         return $this->plainPassword;
  21.     }
  22.     public function getZip(): ?string
  23.     {
  24.         return $this->zip;
  25.     }
  26. }