authors = new ArrayCollection(); } public function getId() { return $this->id; } public function getName() { return $this->name; } public function setName($name) { $this->name = $name; } public function getAuthors() { return $this->authors; } public function addAuthor($author) { $this->authors->add($author); } }