service = $service; } /** * {@inheritdoc} */ public function getFunctions() { return [ new TwigFunction('timesheet_exporter', [$this, 'getTimesheetExporter'], []), ]; } public function getTimesheetExporter(): array { $ids = []; foreach ($this->service->getTimesheetExporter() as $exporter) { $ids[] = $exporter->getId(); } return $ids; } }