This commit is contained in:
Yuri Kuznetsov
2024-05-09 16:38:32 +03:00
parent ede53970bf
commit d36dc4bc1c
@@ -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;
}