pageModel->hitPage($entity, $request, 404); } public function isTrackable(): bool { if (!$this->coreParametersHelper->get('do_not_track_404_anonymous')) { return true; } // already tracked and identified contact if ($lead = $this->contactTracker->getContactByTrackedDevice()) { if (!$lead->isAnonymous()) { return true; } } return false; } }