codeNode = $codeNode; $this->templateRenderer = $templateRenderer; } public function render(): string { if ($this->codeNode->isRaw()) { return $this->codeNode->getValue(); } return $this->templateRenderer->render('code.html.twig', [ 'codeNode' => $this->codeNode, ]); } }