N98\Magento\Command\Developer\Theme\DuplicatesCommand::configure PHP Метод

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

protected configure ( )
    protected function configure()
    {
        $this->setName('dev:theme:duplicates')->addArgument('theme', InputArgument::REQUIRED, 'Your theme')->addArgument('originalTheme', InputArgument::OPTIONAL, 'Original theme to comapre. Default is "base/default"', 'base/default')->addOption('log-junit', null, InputOption::VALUE_REQUIRED, 'Log duplicates in JUnit XML format to defined file.')->setDescription('Find duplicate files (templates, layout, locale, etc.) between two themes.');
        $help = <<<HELP
* If a filename with `--log-junit` option is set the tool generates an XML file and no output to *stdout*.
HELP;
        $this->setHelp($help);
    }