1 | <?php |
||
4 | class ArrayConfig implements ConfigInterface |
||
5 | { |
||
6 | private $imagePath; |
||
7 | |||
8 | private $csvPath; |
||
9 | |||
10 | private $groupName; |
||
11 | |||
12 | private $defaultTaxId; |
||
13 | |||
14 | /** |
||
15 | * ArrayConfig constructor. |
||
16 | * |
||
17 | * @param $imagePath |
||
18 | * @param $csvPath |
||
19 | */ |
||
20 | public function __construct($imagePath, $csvPath) |
||
27 | |||
28 | /** |
||
29 | * @return mixed |
||
30 | */ |
||
31 | public function getImagePath() |
||
35 | |||
36 | /** |
||
37 | * @return mixed |
||
38 | */ |
||
39 | public function getCsvPath() |
||
43 | |||
44 | /** |
||
45 | * @return mixed |
||
46 | */ |
||
47 | public function getGroupName() |
||
51 | |||
52 | /** |
||
53 | * @return mixed |
||
54 | */ |
||
55 | public function getDefaultTaxId() |
||
59 | } |
||
60 |