addArgument( mode: InputArgument::IS_ARRAY, name: '*', ); $this->addOption( name: 'language', shortcut: 'l', mode: InputArgument::OPTIONAL, description: 'The project language', suggestedValues: ['php', 'javascript'], ); $this->addOption( name: 'type', shortcut: 't', mode: InputArgument::OPTIONAL, description: 'The project type', suggestedValues: ['drupal', 'sculpin'], ); $this->addOption( name: 'working-dir', shortcut: 'd', mode: InputArgument::OPTIONAL, description: 'The project\'s working directory', default: '.', ); } }