id) or modify the context * for resolving a page. */ final class BeforePageIsResolvedEvent { public function __construct( private readonly ServerRequestInterface $request, private PageInformation $pageInformation, ) {} public function getRequest(): ServerRequestInterface { return $this->request; } public function getPageInformation(): PageInformation { return $this->pageInformation; } public function setPageInformation(PageInformation $pageInformation): void { $this->pageInformation = $pageInformation; } }