newsImportService = $newsImportService; $this->importItem = $importItem; $this->news = $news; } /** * Get the importer service */ public function getNewsImportService(): NewsImportService { return $this->newsImportService; } /** * Set the importer service */ public function setNewsImportService(NewsImportService $newsImportService): self { $this->newsImportService = $newsImportService; return $this; } /** * Get the importItem */ public function getImportItem(): array { return $this->importItem; } /** * Set the importItem */ public function setImportItem(array $importItem): self { $this->importItem = $importItem; return $this; } /** * Get the news */ public function getNews(): News { return $this->news; } /** * Set the news */ public function setNews(News $news): self { $this->news = $news; return $this; } }