2023-07-28 12:10:27 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
2024-05-23 07:26:56 +00:00
|
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2023-07-28 12:10:27 +00:00
|
|
|
*/
|
|
|
|
namespace OCP\User\Events;
|
|
|
|
|
|
|
|
use OCP\EventDispatcher\Event;
|
|
|
|
use OCP\IUser;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 28.0.0
|
|
|
|
*/
|
|
|
|
class UserFirstTimeLoggedInEvent extends Event {
|
|
|
|
/**
|
|
|
|
* @since 28.0.0
|
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
private IUser $user,
|
|
|
|
) {
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 28.0.0
|
|
|
|
*/
|
|
|
|
public function getUser(): IUser {
|
|
|
|
return $this->user;
|
|
|
|
}
|
|
|
|
}
|