info('Running SendRecurringInvoices...'); $this->info('Done'); } /** * Get the console command arguments. * * @return array */ protected function getArguments() { return array( //array('example', InputArgument::REQUIRED, 'An example argument.'), ); } /** * Get the console command options. * * @return array */ protected function getOptions() { return array( //array('example', null, InputOption::VALUE_OPTIONAL, 'An example option.', null), ); } }