| 1 | <?php | ||
| 10 | class Invite | ||
| 11 | { | ||
| 12 | /** | ||
| 13 | * @var string | ||
| 14 | */ | ||
| 15 | protected $mobile; | ||
| 16 | /** | ||
| 17 | * @var Money | ||
| 18 | */ | ||
| 19 | protected $expectedAmount; | ||
| 20 | |||
| 21 | /** | ||
| 22 | * @return string | ||
| 23 | */ | ||
| 24 | public function getMobile() | ||
| 28 | |||
| 29 | /** | ||
| 30 | * @param string $mobile | ||
| 31 | * | ||
| 32 | * @return Invite | ||
| 33 | */ | ||
| 34 | public function setMobile($mobile) | ||
| 40 | |||
| 41 | /** | ||
| 42 | * @return Money | ||
| 43 | */ | ||
| 44 | public function getExpectedAmount() | ||
| 48 | |||
| 49 | /** | ||
| 50 | * @param Money $expectedAmount | ||
| 51 | * | ||
| 52 | * @return Invite | ||
| 53 | */ | ||
| 54 | public function setExpectedAmount($expectedAmount) | ||
| 60 | } | ||
| 61 |