Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
18 | 1 | public function __construct( |
|
19 | UuidInterface $uuid, |
||
20 | Money $amount, |
||
21 | UuidInterface $orderUuid, |
||
22 | string $invoiceNr, |
||
23 | DateTime $dueDate |
||
24 | ) { |
||
25 | 1 | parent::__construct($uuid, $amount); |
|
26 | |||
27 | 1 | $this->orderUuid = $orderUuid; |
|
28 | 1 | $this->invoiceNr = $invoiceNr; |
|
29 | 1 | $this->dueDate = $dueDate; |
|
30 | 1 | } |
|
31 | |||
47 |