Merge pull request #20293 from nextcloud/fix/noid/BeforeUserLoggedInEvent-returntype

fixes the return type of BeforeUserLoggedInEvent
pull/20299/head
blizzz 6 years ago committed by GitHub
commit 2d0f29f208
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      lib/public/User/Events/BeforeUserLoggedInEvent.php

@ -34,7 +34,7 @@ use OCP\IUser;
*/
class BeforeUserLoggedInEvent extends Event {
/** @var IUser */
/** @var string */
private $username;
/** @var string */
@ -50,9 +50,11 @@ class BeforeUserLoggedInEvent extends Event {
}
/**
* returns the login name, which must not necessarily match to a user ID
*
* @since 18.0.0
*/
public function getUsername(): IUser {
public function getUsername(): string {
return $this->username;
}

Loading…
Cancel
Save