Passed
Push — master ( fc580a...f42173 )
by Hector Luis
09:33 queued 12s
created
Console/Command/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,8 @@
 block discarded – undo
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");
Please login to merge, or discard this patch.
Configuration/Connector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.