1 | <?php |
||
5 | class ExRatesTable |
||
6 | { |
||
7 | /** @var string */ |
||
8 | public $rawContent; |
||
9 | |||
10 | /** @var array */ |
||
11 | public $parsedContent; |
||
12 | |||
13 | /** |
||
14 | * @param string $rawContent Raw xml content |
||
15 | * |
||
16 | * @throws \Exception |
||
17 | */ |
||
18 | public function __construct($rawContent) |
||
23 | |||
24 | /** |
||
25 | * Transform the raw xml content into an array |
||
26 | * |
||
27 | * @param string $rawContent |
||
28 | * |
||
29 | * @return array |
||
30 | * |
||
31 | * @throws \Exception |
||
32 | */ |
||
33 | private function parseXml($rawContent) |
||
61 | } |
||
62 |