Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function __construct(\stdClass $response) |
||
26 | { |
||
27 | $this->information = new Information( |
||
28 | $response->information->api_version, |
||
29 | $response->information->execution_time, |
||
30 | new Carbon($response->information->last_updated), |
||
31 | new Carbon($response->information->timestamp) |
||
32 | ); |
||
33 | } |
||
34 | |||
43 |