diff options
Diffstat (limited to 'apps/twofactor_backupcodes/lib/Event/CodesGenerated.php')
-rw-r--r-- | apps/twofactor_backupcodes/lib/Event/CodesGenerated.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/apps/twofactor_backupcodes/lib/Event/CodesGenerated.php b/apps/twofactor_backupcodes/lib/Event/CodesGenerated.php new file mode 100644 index 00000000000..90dc6206f71 --- /dev/null +++ b/apps/twofactor_backupcodes/lib/Event/CodesGenerated.php @@ -0,0 +1,28 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OCA\TwoFactorBackupCodes\Event; + +use OCP\EventDispatcher\Event; +use OCP\IUser; + +class CodesGenerated extends Event { + + public function __construct( + private IUser $user, + ) { + parent::__construct(); + } + + /** + * @return IUser + */ + public function getUser(): IUser { + return $this->user; + } +} |