Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | public function __construct(array $data) |
||
44 | { |
||
45 | $this->fromCurrency = $data['query']['from']; |
||
46 | $this->toCurrency = $data['query']['to']; |
||
47 | $this->amount = $data['query']['amount']; |
||
48 | $this->quote = $data['info']['quote']; |
||
49 | $this->result = $data['result']; |
||
50 | $this->timestamp = $data['info']['timestamp']; |
||
51 | $this->date = isset($data['date']) ? new \DateTimeImmutable($data['date']) : null; |
||
52 | } |
||
110 |