src/Model/Request/Login/LoginUserRequest.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Model\Request\Login;
  3. use Symfony\Component\Validator\Constraints as Assert;
  4. class LoginUserRequest
  5. {
  6.     /**
  7.      * @var string
  8.      *
  9.      * @Assert\NotBlank(message="Email should not be blank.")
  10.      * @Assert\Length(max=100, maxMessage="Email is too long. It should have {{ limit }} character or less.")
  11.      */
  12.     private $email;
  13.     /**
  14.      * @var string
  15.      *
  16.      * @Assert\NotBlank(message="Password should not be blank.")
  17.      */
  18.     private $password;
  19.     /**
  20.      * @return string
  21.      */
  22.     public function getEmail(): string
  23.     {
  24.         return $this->email;
  25.     }
  26.     /**
  27.      * @param string $email
  28.      * @return LoginUserRequest
  29.      */
  30.     public function setEmail(string $email): LoginUserRequest
  31.     {
  32.         $this->email $email;
  33.         return $this;
  34.     }
  35.     /**
  36.      * @return string
  37.      */
  38.     public function getPassword(): string
  39.     {
  40.         return $this->password;
  41.     }
  42.     /**
  43.      * @param string $password
  44.      * @return LoginUserRequest
  45.      */
  46.     public function setPassword(string $password): LoginUserRequest
  47.     {
  48.         $this->password $password;
  49.         return $this;
  50.     }
  51. }