Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | public function __construct( |
||
27 | ?HourlyRateDto $hourlyRate, |
||
28 | MembershipEnum $membershipStatus, |
||
29 | string $membershipType, |
||
30 | string $targetId, |
||
31 | string $userId |
||
32 | ) { |
||
33 | $this->hourlyRate = $hourlyRate; |
||
34 | $this->membershipStatus = $membershipStatus; |
||
35 | $this->membershipType = $membershipType; |
||
36 | $this->targetId = $targetId; |
||
37 | $this->userId = $userId; |
||
38 | } |
||
65 |