Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class Connector extends Base implements ConnectorInterface |
||
18 | { |
||
19 | /** |
||
20 | * @inheritDoc |
||
21 | */ |
||
22 | public function getXmlGroupPath($storeId = null): string |
||
23 | { |
||
24 | return self::XML_GROUP_PATH; |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @inheritDoc |
||
29 | */ |
||
30 | public function isProductionEnvironment($storeId = null): bool |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @inheritDoc |
||
37 | */ |
||
38 | public function getBaseUri($storeId = null): string |
||
43 |