mirror of
https://github.com/nextcloud/server.git
synced 2025-02-12 12:09:14 +00:00
28 lines
467 B
PHP
28 lines
467 B
PHP
<?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;
|
|
}
|
|
}
|