Inheritance: extends Illuminate\Console\Command
 /**
  * Get the console command arguments.
  *
  * @return array
  */
 protected function getArguments()
 {
     return array_merge(parent::getArguments(), []);
 }
 /**
  * Get the console command options.
  *
  * @return array
  */
 public function getOptions()
 {
     return array_merge(parent::getOptions(), [['paginate', null, InputOption::VALUE_REQUIRED, 'Pagination for index.blade.php']]);
 }