TwoFactorProviderChallengeFailed.php 669 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\Authentication\TwoFactorAuth;
  8. use OCP\EventDispatcher\Event;
  9. use OCP\IUser;
  10. /**
  11. * @since 28.0.0
  12. */
  13. class TwoFactorProviderChallengeFailed extends Event {
  14. /**
  15. * @since 28.0.0
  16. */
  17. public function __construct(
  18. private IUser $user,
  19. private IProvider $provider) {
  20. parent::__construct();
  21. }
  22. /**
  23. * @since 28.0.0
  24. */
  25. public function getUser(): IUser {
  26. return $this->user;
  27. }
  28. /**
  29. * @since 28.0.0
  30. */
  31. public function getProvider(): IProvider {
  32. return $this->provider;
  33. }
  34. }