Total Complexity | 9 |
Total Lines | 72 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | class AkeneoPimMiddlewareConnectorConfig extends AbstractBundleConfig |
||
14 | { |
||
15 | /** |
||
16 | * @return string |
||
17 | */ |
||
18 | public function getLocaleMapFilePath(): string |
||
19 | { |
||
20 | return $this->get(AkeneoPimMiddlewareConnectorConstants::LOCALE_MAP_FILE_PATH); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getAttributeMapFilePath(): string |
||
27 | { |
||
28 | return $this->get(AkeneoPimMiddlewareConnectorConstants::ATTRIBUTE_MAP_FILE_PATH); |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getSuperAttributeMapFilePath(): string |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @return int |
||
41 | */ |
||
42 | public function getFkCategoryTemplate(): int |
||
43 | { |
||
44 | return $this->get(AkeneoPimMiddlewareConnectorConstants::FK_CATEGORY_TEMPLATE); |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * @return string |
||
49 | */ |
||
50 | public function getTaxSet(): string |
||
51 | { |
||
52 | return $this->get(AkeneoPimMiddlewareConnectorConstants::TAX_SET); |
||
53 | } |
||
54 | |||
55 | /** |
||
56 | * @return array |
||
57 | */ |
||
58 | public function getLocalesForImport(): array |
||
61 | } |
||
62 | |||
63 | /** |
||
64 | * @return array |
||
65 | */ |
||
66 | public function getActiveStoresForProducts(): array |
||
69 | } |
||
70 | |||
71 | /** |
||
72 | * @return array |
||
73 | */ |
||
74 | public function getLocaleToPriceMap(): array |
||
77 | } |
||
78 | |||
79 | /** |
||
80 | * @return string |
||
81 | */ |
||
82 | public function getDefaultParentCategoryKey() : string |
||
87 |