twig = $twig; $this->dispatcher = $dispatcher; $this->projectStatisticService = $projectStatisticService; $this->activityStatisticService = $activityStatisticService; } public function create(string $id, string $template): HtmlRenderer { $renderer = new HtmlRenderer($this->twig, $this->dispatcher, $this->projectStatisticService, $this->activityStatisticService); $renderer->setId($id); $renderer->setTemplate($template); return $renderer; } }