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