summaryrefslogtreecommitdiffstats
path: root/lib/public/User/Events/UserLoggedInEvent.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/User/Events/UserLoggedInEvent.php')
-rw-r--r--lib/public/User/Events/UserLoggedInEvent.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/public/User/Events/UserLoggedInEvent.php b/lib/public/User/Events/UserLoggedInEvent.php
index b9b36544231..b1a46b9570d 100644
--- a/lib/public/User/Events/UserLoggedInEvent.php
+++ b/lib/public/User/Events/UserLoggedInEvent.php
@@ -37,7 +37,7 @@ class UserLoggedInEvent extends Event {
/** @var IUser */
private $user;
- /** @var string */
+ /** @var string|null */
private $password;
/** @var bool */
@@ -49,7 +49,7 @@ class UserLoggedInEvent extends Event {
/**
* @since 18.0.0
*/
- public function __construct(IUser $user, string $loginName, string $password, bool $isTokenLogin) {
+ public function __construct(IUser $user, string $loginName, ?string $password, bool $isTokenLogin) {
parent::__construct();
$this->user = $user;
$this->password = $password;
@@ -74,7 +74,7 @@ class UserLoggedInEvent extends Event {
/**
* @since 18.0.0
*/
- public function getPassword(): string {
+ public function getPassword(): ?string {
return $this->password;
}