Behat\Testwork\Cli\Application::getDefaultInputDefinition PHP Method

getDefaultInputDefinition() public method

Gets the default input definition.
public getDefaultInputDefinition ( ) : Symfony\Component\Console\Input\InputDefinition
return Symfony\Component\Console\Input\InputDefinition An InputDefinition instance
    public function getDefaultInputDefinition()
    {
        return new InputDefinition(array(new InputOption('--profile', '-p', InputOption::VALUE_REQUIRED, 'Specify config profile to use.'), new InputOption('--config', '-c', InputOption::VALUE_REQUIRED, 'Specify config file to use.'), new InputOption('--verbose', '-v', InputOption::VALUE_OPTIONAL, 'Increase verbosity of exceptions.' . PHP_EOL . 'Use -vv or --verbose=2 to display backtraces in addition to exceptions.'), new InputOption('--help', '-h', InputOption::VALUE_NONE, 'Display this help message.'), new InputOption('--config-reference', null, InputOption::VALUE_NONE, 'Display the configuration reference.'), new InputOption('--debug', null, InputOption::VALUE_NONE, 'Provide debuggin information about current environment.'), new InputOption('--version', '-V', InputOption::VALUE_NONE, 'Display this behat version.'), new InputOption('--no-interaction', '-n', InputOption::VALUE_NONE, 'Do not ask any interactive question.'), new InputOption('--colors', null, InputOption::VALUE_NONE, 'Force ANSI color in the output. By default color support is' . PHP_EOL . 'guessed based on your platform and the output if not specified.'), new InputOption('--no-colors', null, InputOption::VALUE_NONE, 'Force no ANSI color in the output.')));
    }