tags_favorites = new ArrayCollection(); $this->elements = new ArrayCollection(); $this->elements_favorites = new ArrayCollection(); $this->followeds_users = new ArrayCollection(); $this->followers_users = new ArrayCollection(); $this->followed_groups = new ArrayCollection(); $this->groups = new ArrayCollection(); parent::__construct(); } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Get tags_favorites * * @return Doctrine\Common\Collections\Collection */ public function getTagsFavorites() { return $this->tags_favorites; } /** * Add tags_favorites * * @param UsersTagsFavorites $tagsFavorites */ public function addUsersTagsFavorites(UsersTagsFavorites $tagsFavorites) { $this->tags_favorites[] = $tagsFavorites; } /** * Add elements_favorites * * @param UsersElementsFavorites $elementsFavorites */ public function addUsersElementsFavorites(UsersElementsFavorites $elementsFavorites) { $this->elements_favorites[] = $elementsFavorites; } /** * Get elements_favorites * * @return Doctrine\Common\Collections\Collection */ public function getElementsFavorites() { return $this->elements_favorites; } /** * 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; } /** * Add followeds_users * * @param FollowUser $followedsUsers */ public function addFollowUser(FollowUser $followedsUsers) { $this->followeds_users[] = $followedsUsers; } /** * Get followeds_users * * @return Doctrine\Common\Collections\Collection */ public function getFollowedsUsers() { return $this->followeds_users; } /** * Get followers_users * * @return Doctrine\Common\Collections\Collection */ public function getFollowersUsers() { return $this->followers_users; } /** * Add followed_groups * * @param FollowGroup $followedGroups */ public function addFollowGroup(FollowGroup $followedGroups) { $this->followed_groups[] = $followedGroups; } /** * Get followed_groups * * @return Doctrine\Common\Collections\Collection */ public function getFollowedGroups() { return $this->followed_groups; } /** * Add groups * * @param Group $groups */ public function addGroupOwned(Group $groups) { $this->groups[] = $groups; } /** * Get groups * * @return Doctrine\Common\Collections\Collection */ public function getGroupsOnwed() { return $this->groups; } /* * * */ }