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