tweets = new ArrayCollection(); $this->userLists = new ArrayCollection(); } public function addTweet(Tweet $tweet) { $tweet->setAuthor($this); $this->tweets->add($tweet); } public function addUserList(UserList $userList) { $userList->owner = $this; $this->userLists->add($userList); } }