N98\Magento\Command\Config\SetCommand::configure PHP Метод

configure() защищенный Метод

protected configure ( )
    protected function configure()
    {
        $this->setName('config:set')->setDescription('Set a core config item')->addArgument('path', InputArgument::REQUIRED, 'The config path')->addArgument('value', InputArgument::REQUIRED, 'The config value')->addOption('scope', null, InputOption::VALUE_OPTIONAL, 'The config value\'s scope (default, websites, stores)', 'default')->addOption('scope-id', null, InputOption::VALUE_OPTIONAL, 'The config value\'s scope ID', '0')->addOption('encrypt', null, InputOption::VALUE_NONE, 'The config value should be encrypted using local.xml\'s crypt key')->addOption('force', null, InputOption::VALUE_NONE, 'Allow creation of non-standard scope-id\'s for websites and stores');
        $help = <<<HELP
Set a store config value by path.
To set a value of a specify store view you must set the "scope" and "scope-id" option.

HELP;
        $this->setHelp($help);
    }