name = $this->assignFromArray('name', $data, true); $this->alt_name = $this->assignFromArray('alt_name', $data); } /* Get the company name. */ public function getName() { return $this->name; } /* Get the alternative name */ public function getAltName() { return $this->alt_name; } }