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 int|null |
||
19 | */ |
||
20 | 1 | public function getBalance() |
|
24 | |||
25 | /** |
||
26 | * Set the balance property |
||
27 | * |
||
28 | * @param int $balance |
||
29 | * @return $this |
||
30 | */ |
||
31 | public function setBalance($balance) |
||
36 | |||
37 | /** |
||
38 | * @return int|null |
||
39 | */ |
||
40 | 1 | public function getDaysLeft() |
|
44 | |||
45 | /** |
||
46 | * |
||
47 | */ |
||
48 | public function setDaysLeft($daysLeft) |
||
53 | |||
54 | /** |
||
55 | * @return int|null |
||
56 | */ |
||
57 | 1 | public function getRecommendedPayment() |
|
61 | |||
62 | /** |
||
63 | * |
||
64 | */ |
||
65 | public function setRecommendedPayment($recommendedPayment) |
||
70 | } |
||
71 |