locations; } /** * Add location. * * @param Location $location Location * * @return void * * @since 1.0.0 */ public function addLocation(Location $location) : void { $this->locations[] = $location; } /** * Get account contact element. * * @return Contact[] * * @since 1.0.0 */ public function getContacts() : array { return $this->contacts; } /** * Add contact element. * * @param Contact $contact Contact Element * * @return void * * @since 1.0.0 */ public function addContact(Contact $contact) : void { $this->contacts[] = $contact; } }