offices = new ArrayCollection(); $this->clients = new ArrayCollection(); $this->spoken_languages = new ArrayCollection(); $this->configuration_management_expertises = new ArrayCollection(); $this->expertise_areas = new ArrayCollection(); $this->services_offered = new ArrayCollection(); } /** * @return Office[] */ public function getOffices() { return $this->offices->toArray(); } /** * @return ConsultantClient[] */ public function getClients(){ return $this->clients->toArray(); } /** * @return SpokenLanguage[] */ public function getSpokenLanguages() { return $this->spoken_languages->toArray(); } /** * @return ConfigurationManagementType[] */ public function getConfigurationManagementExpertise() { return $this->configuration_management_expertise->toArray(); } /** * @return OpenStackComponent[] */ public function getExpertiseAreas() { return $this->expertise_areas->toArray(); } /** * @return ConsultantServiceOfferedType[] */ public function getServicesOffered() { return $this->services_offered->toArray(); } }