withHeader('Location', '/account/login'); } public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface { if (!isset($_SESSION['user'])) { return $this->redirectToLogin(); } $user = $this->users->find($_SESSION['user']); if (!$user) { return $this->redirectToLogin(); } return $handler->handle($request->withAttribute('user', $user)); } }