Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
14 | public function createResponse(array $data): TransactionSettlementResponse |
||
15 | { |
||
16 | return new TransactionSettlementResponse( |
||
17 | new DateTimeImmutable($data['createdDate']), |
||
18 | $this->parseAuthDate($data['authDate']), |
||
19 | $this->parseSettlementDate($data['settlementDate']) |
||
20 | ); |
||
21 | } |
||
22 | |||
39 |