entityProcessor = $entityProcessor; } public function print(Template $template, Entity $entity, Params $params, Data $data): Contents { $pdf = new Tcpdf(); $this->entityProcessor->process($pdf, $template, $entity, $params, $data); return new TcpdfContents($pdf); } }