job_orders = new ArrayCollection(); } public function getID() { return $this->id; } public function setFirstName($name) { $this->first_name = $name; return $this; } public function getFirstName() { return $this->first_name; } public function setLastName($name) { $this->last_name = $name; return $this; } public function getLastName() { return $this->last_name; } public function setContactNumber($num) { $this->contact_num = $num; return $this; } public function getContactNumber() { return $this->contact_num; } public function setHub(Hub $hub) { $this->hub = $hub; return $this; } public function getHub() { return $this->hub; } public function clearHub() { $this->hub = null; return $this; } }