Composer\Satis\Console\Command\AddCommand::configure PHP Метод

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

protected configure ( )
    protected function configure()
    {
        $this->setName('add')->setDescription('Add repository URL to satis JSON file')->setDefinition([new InputArgument('url', InputArgument::REQUIRED, 'VCS repository URL'), new InputArgument('file', InputArgument::OPTIONAL, 'JSON file to use', './satis.json')])->setHelp(<<<'EOT'
The <info>add</info> command adds given repository URL to the json file
(satis.json is used by default). You will need to run <comment>build</comment> command to
fetch updates from repository.
EOT
);
    }