FirstName = $FirstName; return $this; } /** * return $this */ public function setLastName($LastName) { $this->LastName = $LastName; return $this; } /** * return result */ public function getResult() { return $this->FirstName . ' ' . $this->LastName; } } /** * demo */ $fullName = (new MyName())->setFirstName('Don')->setLastName('Joe')->getResult(); echo $fullName; // Don Joe # end of file