@@ -55,8 +55,8 @@ |
||
55 | 55 | { |
56 | 56 | $output->writeln("Launching config command..."); |
57 | 57 | $url = $this->connectorConfiguration->getBaseUri(); |
58 | - $enabled = $this->connectorConfiguration->isEnabled(); |
|
59 | - $debug = $this->connectorConfiguration->inDebugMode(); |
|
58 | + $enabled = $this->connectorConfiguration->isEnabled(); |
|
59 | + $debug = $this->connectorConfiguration->inDebugMode(); |
|
60 | 60 | $output->writeln("Enabled: $enabled"); |
61 | 61 | $output->writeln("Base Uri: $url"); |
62 | 62 | $output->writeln("Debug Mode: $debug"); |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function isProductionEnvironment($storeId = null): bool |
31 | 31 | { |
32 | - return (bool)$this->getConfig(self::XML_SUB_GROUP_GENERAL_PATH . DIRECTORY_SEPARATOR . self::PRODUCTION_ENVIRONMENT_FIELD, $storeId); |
|
32 | + return (bool) $this->getConfig(self::XML_SUB_GROUP_GENERAL_PATH . DIRECTORY_SEPARATOR . self::PRODUCTION_ENVIRONMENT_FIELD, $storeId); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
@@ -37,6 +37,6 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public function getBaseUri($storeId = null): string |
39 | 39 | { |
40 | - return (string)$this->getConfig(self::XML_SUB_GROUP_GENERAL_PATH . DIRECTORY_SEPARATOR . self::BASE_URI_FIELD, $storeId); |
|
40 | + return (string) $this->getConfig(self::XML_SUB_GROUP_GENERAL_PATH . DIRECTORY_SEPARATOR . self::BASE_URI_FIELD, $storeId); |
|
41 | 41 | } |
42 | 42 | } |