Mpociot\LaravelTestFactoryHelper\Console\GenerateCommand::getOptions PHP Method

getOptions() protected method

Get the console command options.
protected getOptions ( ) : array
return array
    protected function getOptions()
    {
        return array(array('filename', 'F', InputOption::VALUE_OPTIONAL, 'The path to the model factory file', $this->filename), array('dir', 'D', InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, 'The model dir', array($this->dir)), array('reset', 'R', InputOption::VALUE_NONE, 'Remove the original ModelFactory instead of appending'), array('ignore', 'I', InputOption::VALUE_OPTIONAL, 'Which models to ignore', ''));
    }