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; }