Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
1 | <?php |
||
40 | 18 | public function __construct( |
|
41 | $trackingNumber, |
||
42 | DateTime $eventDate, |
||
43 | DeliveryStatus $status, |
||
44 | $internalNumber = null |
||
45 | ) { |
||
46 | 18 | $this->trackingNumber = $trackingNumber; |
|
47 | 18 | $this->eventDate = $eventDate; |
|
48 | 18 | $this->status = $status; |
|
49 | 18 | $this->internalNumber = $internalNumber; |
|
50 | 18 | } |
|
51 | |||
94 |