From d36dc4bc1c90efbdd35e40cc0ba27e72e737fb2f Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 9 May 2024 16:38:32 +0300 Subject: [PATCH] fix docs --- application/Espo/Core/Authentication/Hook/BeforeLogin.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/application/Espo/Core/Authentication/Hook/BeforeLogin.php b/application/Espo/Core/Authentication/Hook/BeforeLogin.php index 98c049d5b0..9e81c65bf8 100644 --- a/application/Espo/Core/Authentication/Hook/BeforeLogin.php +++ b/application/Espo/Core/Authentication/Hook/BeforeLogin.php @@ -36,11 +36,12 @@ use Espo\Core\Exceptions\ServiceUnavailable; /** * Before logging in, before credentials are checked. - * - * @throws Forbidden - * @throws ServiceUnavailable */ interface BeforeLogin { + /** + * @throws Forbidden + * @throws ServiceUnavailable + */ public function process(AuthenticationData $data, Request $request): void; }