Blackfire\Player\Console\PlayerCommand::configure PHP Метод

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

protected configure ( )
    protected function configure()
    {
        $this->setName('run')->setDefinition([new InputArgument('files', InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'The files defining the scenarios'), new InputOption('concurrency', 'c', InputOption::VALUE_REQUIRED, 'The number of clients to create', 1), new InputOption('endpoint', '', InputOption::VALUE_REQUIRED, 'Override the scenario endpoint', null), new InputOption('output', 'o', InputOption::VALUE_REQUIRED, 'Saves the extracted values', null), new InputOption('blackfire', '', InputOption::VALUE_REQUIRED, 'Enabled Blackfire and use the specified environment', null), new InputOption('variables', '', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Override a variable value', null)])->setDescription('Runs a scenario YAML file')->setHelp(<<<EOF
Read https://blackfire.io/docs/player/cli to learn about all supported options.
EOF
);
    }