pages->find($pageId); if ($page === null || $page->crawlId !== $crawlId) { $this->notFound('Seite nicht gefunden'); return; } $this->view('crawler.page', [ 'title' => 'Seite #' . $pageId, 'page' => $page, 'links' => $this->links->listByPage($pageId), ]); } }