1 | <?php |
||
10 | final class PayoutInfo |
||
11 | { |
||
12 | private $totalBalance; |
||
13 | private $nextPayoutAmount; |
||
14 | private $discountRemaining; |
||
15 | private $periodicity; |
||
16 | |||
17 | 3 | public function __construct(Money $totalBalance, Money $nextPayoutAmount, Money $discountRemaining, Periodicity $periodicity) |
|
24 | |||
25 | 2 | public function getTotalBalance(): Money |
|
29 | |||
30 | 2 | public function getNextPayoutAmount(): Money |
|
34 | |||
35 | 2 | public function getDiscountRemaining(): Money |
|
39 | |||
40 | 2 | public function getPeriodicity(): Periodicity |
|
44 | } |
||
45 |