Esempio n. 1
0
 /**
  * Get the console command arguments.
  *
  * @return array
  */
 protected function getArguments()
 {
     return array_merge(parent::getArguments(), [['repo', InputArgument::REQUIRED, 'Name of repo']]);
 }
Esempio n. 2
0
 /**
  * Get the console command options.
  *
  * @return array
  */
 protected function getOptions()
 {
     return array_merge(parent::getOptions(), [['zip', null, InputOption::VALUE_NONE, 'Upload a zip archive instead of files']]);
 }