From dab05eb38864fab969dbad8cdab77d3af1b69a4e Mon Sep 17 00:00:00 2001 From: Ali Hammad Date: Fri, 9 Jan 2026 21:58:51 +0500 Subject: [PATCH] Update authentication service interface assertion Signed-off-by: Ali Hammad --- src/Admin/src/Handler/Account/PostLoginAccountHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Admin/src/Handler/Account/PostLoginAccountHandler.php b/src/Admin/src/Handler/Account/PostLoginAccountHandler.php index 008b26a..b08718c 100644 --- a/src/Admin/src/Handler/Account/PostLoginAccountHandler.php +++ b/src/Admin/src/Handler/Account/PostLoginAccountHandler.php @@ -52,7 +52,7 @@ public function __construct( public function handle(ServerRequestInterface $request): ResponseInterface { - assert($this->authenticationService instanceof AuthenticationServiceInterface); + assert($this->authenticationService instanceof LaminasAuthenticationServiceInterface); if ($this->authenticationService->hasIdentity()) { return new RedirectResponse($this->router->generateUri('app::index-redirect')); }