N98\Magento\Command\Config\DeleteCommand::configure PHP Method

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->setName('config:delete')->setDescription('Deletes a store config item')->addArgument('path', InputArgument::REQUIRED, 'The config path')->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('force', null, InputOption::VALUE_NONE, 'Allow deletion of non-standard scope-id\'s for websites and stores')->addOption('all', null, InputOption::VALUE_NONE, 'Delete all entries by path');
        $help = <<<HELP
To delete all entries if a path you can set the option --all.
HELP;
        $this->setHelp($help);
    }