vendor/sylius/sylius/src/Sylius/Bundle/UserBundle/Form/Model/PasswordResetRequest.php line 16

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Sylius package.
  4.  *
  5.  * (c) Paweł Jędrzejewski
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace Sylius\Bundle\UserBundle\Form\Model;
  12. class PasswordResetRequest
  13. {
  14.     /** @var string|null */
  15.     private $email;
  16.     public function getEmail(): ?string
  17.     {
  18.         return $this->email;
  19.     }
  20.     public function setEmail(?string $email): void
  21.     {
  22.         $this->email $email;
  23.     }
  24. }