Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
12 | 2 | public static function createFromResponse(ResponseInterface $response): PurchaseHistory |
|
13 | { |
||
14 | 2 | $data = json_decode($response->getBody()->getContents(), true); |
|
15 | |||
16 | 2 | return new PurchaseHistory( |
|
17 | 2 | $data['firstPurchaseHash'], |
|
18 | 2 | $data['lastPurchaseHash'], |
|
19 | 2 | PurchaseParser::parseArray($data['purchases']) |
|
20 | ); |
||
21 | } |
||
22 | } |
||
23 |