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