article = $article; $this->language = $language; $this->title = $title; $this->reviewedByEditors = new \Doctrine\Common\Collections\ArrayCollection(); $this->lastTranslatedBy = new \Doctrine\Common\Collections\ArrayCollection(); } public function getArticleId() { return $this->article->id(); } public function getLanguage() { return $this->language; } public function getLastTranslatedBy() { return $this->lastTranslatedBy; } public function getReviewedByEditors() { return $this->reviewedByEditors; } }