Total Complexity | 3 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class EcondaConfig extends AbstractBundleConfig |
||
15 | { |
||
16 | const ECONDA_CSV_DELIMITER = '|'; |
||
17 | const ECONDA_CSV_CATEGORY_DELIMITER = '^^'; |
||
18 | |||
19 | /** |
||
20 | * @return string |
||
21 | */ |
||
22 | public function getHostYves() |
||
23 | { |
||
24 | return $this->get(ApplicationConstants::HOST_YVES); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getFileExportPath() |
||
31 | { |
||
32 | return $this->get(EcondaConstants::ECONDA_CSV_FOLDER_PATH); |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @param string $dbEngineName |
||
37 | * |
||
38 | * @return array |
||
39 | */ |
||
40 | public function getStoragePdoQueryAdapterClassNames($dbEngineName) |
||
52 | } |
||
53 | } |
||
54 |