Laravel\Envoy\Console\RunCommand::configure PHP Method

configure() protected method

Configure the command options.
protected configure ( ) : void
return void
    protected function configure()
    {
        $this->ignoreValidationErrors();
        $this->setName('run')->setDescription('Run an Envoy task.')->addArgument('task', InputArgument::REQUIRED)->addOption('continue', null, InputOption::VALUE_NONE, 'Continue running even if a task fails')->addOption('pretend', null, InputOption::VALUE_NONE, 'Dump Bash script for inspection');
    }