Skip to content

Commit 366a5b7

Browse files
committed
ACP2E-1999: fix static errors
1 parent 8a6a01e commit 366a5b7

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

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

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,18 @@ class ConfigSetCommand extends Command
3434
/**#@+
3535
* Constants for arguments and options.
3636
*/
37-
const ARG_PATH = 'path';
38-
const ARG_VALUE = 'value';
39-
const OPTION_SCOPE = 'scope';
40-
const OPTION_SCOPE_CODE = 'scope-code';
41-
const OPTION_LOCK = 'lock';
42-
const OPTION_LOCK_ENV = 'lock-env';
43-
const OPTION_LOCK_CONFIG = 'lock-config';
37+
public const ARG_PATH = 'path';
38+
public const ARG_VALUE = 'value';
39+
public const OPTION_SCOPE = 'scope';
40+
public const OPTION_SCOPE_CODE = 'scope-code';
41+
public const OPTION_LOCK = 'lock';
42+
public const OPTION_LOCK_ENV = 'lock-env';
43+
public const OPTION_LOCK_CONFIG = 'lock-config';
4444
/**#@-*/
4545

46-
/**#@-*/
46+
/**#@-
47+
* @var EmulatedAdminhtmlAreaProcessor
48+
*/
4749
private $emulatedAreaProcessor;
4850

4951
/**
@@ -77,6 +79,7 @@ class ConfigSetCommand extends Command
7779
* @param ChangeDetector $changeDetector The config change detector
7880
* @param ProcessorFacadeFactory $processorFacadeFactory The factory for processor facade
7981
* @param DeploymentConfig $deploymentConfig Application deployment configuration
82+
* @param LocaleEmulatorInterface|null $localeEmulator
8083
*/
8184
public function __construct(
8285
EmulatedAdminhtmlAreaProcessor $emulatedAreaProcessor,

0 commit comments

Comments
 (0)