. * */ namespace Friendica\Console; class Test extends \Asika\SimpleConsole\Console { protected $helpOptions = ['h', 'help', '?']; protected function getHelp() { $help = <<getOption('v')) { $this->out('Class: ' . __CLASS__); $this->out('Arguments: ' . var_export($this->args, true)); $this->out('Options: ' . var_export($this->options, true)); } /* * Please use this console command for your CLI tests, do not commit anything inside this method. */ return 0; } }