* @template-extends TemplateResponse> */ class NotFoundResponse extends TemplateResponse { /** * @param S $status * @param H $headers * @since 8.1.0 */ public function __construct(int $status = Http::STATUS_NOT_FOUND, array $headers = []) { parent::__construct('core', '404', [], 'guest', $status, $headers); $this->setContentSecurityPolicy(new ContentSecurityPolicy()); } }