phones = new ArrayCollection; $this->groups = new ArrayCollection; } public function getPhones() { return $this->phones; } public function getAddress() { return $this->address; } public function getGroups() { return $this->groups; } public function setAddress(Address $address) { if ($this->address !== $address) { $this->address = $address; $address->setUser($this); } } }