Tuli\Command::configure PHP Method

configure() protected method

protected configure ( )
    protected function configure()
    {
        $this->addOption('exclude', 'x', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, "Extensions To Exclude?", $this->defaultSkipExtensions)->addArgument('files', InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'The files to analyze');
    }

Usage Example

Ejemplo n.º 1
0
 protected function configure()
 {
     parent::configure();
     $this->setName('analyze')->setDescription('Analyze the provided files');
 }
All Usage Examples Of Tuli\Command::configure