Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | public function __construct(Money $totalBalance, Money $nextPayoutAmount, Money $discountRemaining, Periodicity $periodicity) |
||
18 | { |
||
19 | $this->totalBalance = $totalBalance; |
||
20 | $this->nextPayoutAmount = $nextPayoutAmount; |
||
21 | $this->discountRemaining = $discountRemaining; |
||
22 | $this->periodicity = $periodicity; |
||
23 | } |
||
24 | |||
45 |