Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
50 | 19 | public function __construct( |
|
51 | $code, |
||
52 | $reference, |
||
53 | $status, |
||
54 | DateTime $date, |
||
55 | DateTime $lastEventDate, |
||
56 | Customer $customer |
||
57 | ) { |
||
58 | 19 | $this->code = $code; |
|
59 | 19 | $this->reference = $reference; |
|
60 | 19 | $this->status = $status; |
|
61 | 19 | $this->date = $date; |
|
62 | 19 | $this->lastEventDate = $lastEventDate; |
|
63 | 19 | $this->customer = $customer; |
|
64 | 19 | } |
|
65 | |||
114 |