data_centers = new ArrayCollection(); $this->capabilities_offered = new ArrayCollection(); $this->data_center_regions = new ArrayCollection(); } /** * @return DataCenterLocation[] */ public function getDataCenters() { return $this->data_centers->toArray(); } /** * @return DataCenterRegion[] */ public function getDataCenterRegions() { return $this->data_center_regions->toArray(); } }