Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types = 1); |
||
19 | 1 | public function __construct( |
|
20 | DateTimeImmutable $createdDate, |
||
21 | ?DateTimeImmutable $authDate, |
||
22 | ?DateTimeImmutable $settlementDate |
||
23 | ) |
||
24 | { |
||
25 | 1 | $this->createdDate = $createdDate; |
|
26 | 1 | $this->authDate = $authDate; |
|
27 | 1 | $this->settlementDate = $settlementDate; |
|
28 | 1 | } |
|
46 |