Total Complexity | 4 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class EcondaConfig extends AbstractBundleConfig |
||
16 | { |
||
17 | const ECONDA_CSV_DELIMITER = '|'; |
||
18 | const ECONDA_CSV_CATEGORY_DELIMITER = '^^'; |
||
19 | |||
20 | /** |
||
21 | * @return string |
||
22 | */ |
||
23 | public function getHostYves() |
||
24 | { |
||
25 | return $this->get(ApplicationConstants::HOST_YVES); |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getFileExportPath() |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @param string $pdoEcondaQueryName |
||
38 | * @param string $dbEngineName |
||
39 | * |
||
40 | * @throws \Exception |
||
41 | * |
||
42 | * @return string |
||
43 | */ |
||
44 | public function getPdoEcondaQueryClassName($pdoEcondaQueryName, $dbEngineName) |
||
62 |