Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
51 | public function __construct( |
||
52 | $id, |
||
53 | TargetInterface $target, |
||
54 | CustomerInterface $customer, |
||
55 | PlanInterface $plan, |
||
56 | DateTimeImmutable $time = null |
||
57 | 11 | ) { |
|
58 | 11 | $this->id = $id; |
|
59 | 11 | $this->target = $target; |
|
60 | 11 | $this->customer = $customer; |
|
61 | 11 | $this->plan = $plan; |
|
62 | 11 | $this->time = $time; |
|
63 | } |
||
111 |