followers = new ArrayCollection(); } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set name * * @param string $name */ public function setName($name) { $this->name = $name; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set description * * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * Get description * * @return string */ public function getDescription() { return $this->description; } /** * Set open * * @param boolean $open */ public function setOpen($open) { $this->open = $open; } /** * Get open * * @return boolean */ public function getOpen() { return $this->open; } /** * Add followers * * @param FollowGroup $followers */ public function addFollowGroup(FollowGroup $followers) { $this->followers[] = $followers; } /** * Get followers * * @return Doctrine\Common\Collections\Collection */ public function getFollowers() { return $this->followers; } /** * Set owner * * @param User $owner */ public function setOwner(User $owner) { $this->owner = $owner; } /** * Get owner * * @return User */ public function getOwner() { return $this->owner; } /** * Add tags * * @param GroupsTagsFavorites $tags */ public function addGroupsTagsFavorites(GroupsTagsFavorites $tags) { $this->tags[] = $tags; } /** * Get tags * * @return Doctrine\Common\Collections\Collection */ public function getTags() { return $this->tags; } /** * Add elements * * @param Element $elements */ public function addElement(Element $elements) { $this->elements[] = $elements; } /** * Get elements * * @return Doctrine\Common\Collections\Collection */ public function getElements() { return $this->elements; } }