ValidatePasswordPolicyEvent.php 578 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\Security\Events;
  8. use OCP\EventDispatcher\Event;
  9. /**
  10. * @since 18.0.0
  11. */
  12. class ValidatePasswordPolicyEvent extends Event {
  13. /** @var string */
  14. private $password;
  15. /**
  16. * @since 18.0.0
  17. */
  18. public function __construct(string $password) {
  19. parent::__construct();
  20. $this->password = $password;
  21. }
  22. /**
  23. * @since 18.0.0
  24. */
  25. public function getPassword(): string {
  26. return $this->password;
  27. }
  28. }