| <?php | |
| /** | |
| * Description of Man | |
| * | |
| * @author petr | |
| */ | |
| class Man implements Person { | |
| private $firstName; | |
| private $lastName; | |
| function __construct($firstName, $lastName) { | |
| $this->firstName = $firstName; | |
| $this->lastName = $lastName; | |
| } | |
| public function getFirstName() { | |
| return $this->firstName; | |
| } | |
| public function setFirstName($firstName) { | |
| $this->firstName = $firstName; | |
| } | |
| public function getLastName() { | |
| return $this->lastName; | |
| } | |
| public function setLastName($lastName) { | |
| $this->lastName = $lastName; | |
| } | |
| } | |
| ?> |