| 1 | <?php | ||
| 11 | class MoneyReceiver | ||
| 12 | { | ||
| 13 | |||
| 14 | /** | ||
| 15 | * @var string | ||
| 16 | */ | ||
| 17 | private $name; | ||
| 18 | |||
| 19 | /** | ||
| 20 | * @var string | ||
| 21 | */ | ||
| 22 | private $firstname; | ||
| 23 | |||
| 24 | /** | ||
| 25 | * @var int | ||
| 26 | */ | ||
| 27 | private $id; | ||
| 28 | |||
| 29 | /** | ||
| 30 | * @param string $name | ||
| 31 | * @param string $firstname | ||
| 32 | * @param int $id | ||
| 33 | */ | ||
| 34 | public function __construct($name, $firstname, $id) | ||
| 40 | |||
| 41 | /** | ||
| 42 | * @return string | ||
| 43 | */ | ||
| 44 | public function getName() | ||
| 48 | |||
| 49 | /** | ||
| 50 | * @return string | ||
| 51 | */ | ||
| 52 | public function getFirstname() | ||
| 56 | |||
| 57 | /** | ||
| 58 | * @return int | ||
| 59 | */ | ||
| 60 | public function getId() | ||
| 64 | |||
| 65 | /** | ||
| 66 | * @return string | ||
| 67 | */ | ||
| 68 | public function getDisplayName() | ||
| 72 | |||
| 73 | } |