| 1 | <?php | ||
| 11 | class CreditPoint | ||
| 12 | { | ||
| 13 | /** | ||
| 14 | * @var int | ||
| 15 | */ | ||
| 16 | private $amount; | ||
| 17 | |||
| 18 | /** | ||
| 19 | * @var string | ||
| 20 | */ | ||
| 21 | private $creditPointType; | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @return int | ||
| 25 | */ | ||
| 26 | 1 | public function getAmount() | |
| 30 | |||
| 31 | /** | ||
| 32 | * @param int $amount | ||
| 33 | * | ||
| 34 | * @return CreditPoint | ||
| 35 | */ | ||
| 36 | 2 | public function setAmount($amount) | |
| 42 | |||
| 43 | /** | ||
| 44 | * @return string | ||
| 45 | */ | ||
| 46 | 1 | public function getCreditPointType() | |
| 50 | |||
| 51 | /** | ||
| 52 | * @param string $creditPointType | ||
| 53 | * | ||
| 54 | * @return CreditPoint | ||
| 55 | */ | ||
| 56 | 2 | public function setCreditPointType($creditPointType) | |
| 62 | } | ||
| 63 |