From 40f9f69b42e74f37e68ae00cac743144824819b6 Mon Sep 17 00:00:00 2001 From: djmaze Date: Mon, 8 Nov 2021 10:40:48 +0100 Subject: [PATCH] Wrong return type Model\Account --- snappymail/v/0.0.0/app/libraries/RainLoop/Actions/UserAuth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snappymail/v/0.0.0/app/libraries/RainLoop/Actions/UserAuth.php b/snappymail/v/0.0.0/app/libraries/RainLoop/Actions/UserAuth.php index c826dfffa..723c367a8 100644 --- a/snappymail/v/0.0.0/app/libraries/RainLoop/Actions/UserAuth.php +++ b/snappymail/v/0.0.0/app/libraries/RainLoop/Actions/UserAuth.php @@ -282,7 +282,7 @@ trait UserAuth /** * @throws \RainLoop\Exceptions\ClientException */ - public function getAccountFromToken(bool $bThrowExceptionOnFalse = true): ?Model\Account + public function getAccountFromToken(bool $bThrowExceptionOnFalse = true): ?Account { return $this->GetAccountFromCustomToken($this->getLocalAuthToken(), $bThrowExceptionOnFalse, true, true); }