| 1 | <?php |
||
| 7 | class Balance extends Model |
||
| 8 | { |
||
| 9 | protected $balance = null; |
||
| 10 | |||
| 11 | protected $daysLeft = null; |
||
| 12 | |||
| 13 | protected $recommendedPayment = null; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Retrieve the balance property |
||
| 17 | * |
||
| 18 | * @return float|null |
||
| 19 | */ |
||
| 20 | 1 | public function getBalance() |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return int|null |
||
| 27 | */ |
||
| 28 | 1 | public function getDaysLeft() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return float|null |
||
| 35 | */ |
||
| 36 | 1 | public function getRecommendedPayment() |
|
| 40 | } |
||
| 41 |