Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
25 | 1 | public function __construct( |
|
26 | DateTimeImmutable $createdDate, |
||
27 | DateTimeImmutable $authDate = null, |
||
28 | DateTimeImmutable $settlementDate = null |
||
29 | ) |
||
30 | { |
||
31 | 1 | $this->createdDate = $createdDate; |
|
32 | 1 | $this->authDate = $authDate; |
|
33 | 1 | $this->settlementDate = $settlementDate; |
|
34 | 1 | } |
|
35 | |||
58 |