1 | <?php |
||
17 | class SiteCurrency extends JsonDataNode |
||
18 | { |
||
19 | |||
20 | const NODE_NAME = 'siteCurrency'; |
||
21 | |||
22 | /** |
||
23 | * @var EE_Currency_Config $currency_config |
||
24 | */ |
||
25 | protected $currency_config; |
||
26 | |||
27 | |||
28 | /** |
||
29 | * SiteCurrency constructor. |
||
30 | * |
||
31 | * @param EE_Currency_Config $currency_config |
||
32 | * @param JsonDataNodeValidator $validator |
||
33 | */ |
||
34 | public function __construct(EE_Currency_Config $currency_config, JsonDataNodeValidator $validator) |
||
40 | |||
41 | |||
42 | /** |
||
43 | * @inheritDoc |
||
44 | */ |
||
45 | public function initialize() |
||
57 | } |
||
58 |