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. private ?string $email = null;
  15. public function getEmail(): ?string
  16. {
  17. return $this->email;
  18. }
  19. public function setEmail(?string $email): void
  20. {
  21. $this->email = $email;
  22. }
  23. }