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