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