Skip to content

Commit dc1f009

Browse files
author
Bohdan Korablov
committed
MAGETWO-69584: Command config:sensitive:set does not work on the cloud
1 parent b252a74 commit dc1f009

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

app/code/Magento/Config/Console/Command/ConfigSet/ConfigSetProcessorInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ interface ConfigSetProcessorInterface
1818
/**
1919
* Processes config:set command.
2020
*
21-
* @param string $path The configuration path in format group/section/field_name
21+
* @param string $path The configuration path in format section/group/field_name
2222
* @param string $value The configuration value
2323
* @param string $scope The configuration scope (default, website, or store)
2424
* @param string $scopeCode The scope code

app/code/Magento/Config/Console/Command/ConfigSet/ProcessorFacade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function __construct(
7676
/**
7777
* Processes config:set command.
7878
*
79-
* @param string $path The configuration path in format group/section/field_name
79+
* @param string $path The configuration path in format section/group/field_name
8080
* @param string $value The configuration value
8181
* @param string $scope The configuration scope (default, website, or store)
8282
* @param string $scopeCode The scope code

app/code/Magento/Config/Console/Command/ConfigSetCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ protected function configure()
8080
new InputArgument(
8181
static::ARG_PATH,
8282
InputArgument::REQUIRED,
83-
'Configuration path in format group/section/field_name'
83+
'Configuration path in format section/group/field_name'
8484
),
8585
new InputArgument(static::ARG_VALUE, InputArgument::REQUIRED, 'Configuration value'),
8686
new InputOption(

app/code/Magento/Config/Model/PreparedValueFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function __construct(
7373
/**
7474
* Returns instance of Value with defined properties.
7575
*
76-
* @param string $path The configuration path in format group/section/field_name
76+
* @param string $path The configuration path in format section/group/field_name
7777
* @param string $value The configuration value
7878
* @param string $scope The configuration scope (default, website, or store)
7979
* @param string|int|null $scopeCode The scope code

app/code/Magento/Deploy/Console/Command/App/SensitiveConfigSetCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ protected function configure()
104104
$this->addArgument(
105105
self::INPUT_ARGUMENT_PATH,
106106
InputArgument::OPTIONAL,
107-
'Configuration path for example group/section/field_name'
107+
'Configuration path for example section/group/field_name'
108108
);
109109
$this->addArgument(
110110
self::INPUT_ARGUMENT_VALUE,

0 commit comments

Comments
 (0)