application = $application; } public function getApplication() { return $this->application; } /** * Run the help command * * @command my-help * @return \Consolidation\AnnotatedCommand\Help\HelpDocument */ public function help($commandName = 'help') { $command = $this->getApplication()->find($commandName); $helpDocument = $this->getHelpDocument($command); return $helpDocument; } /** * Create a help document. */ protected function getHelpDocument($command) { return new HelpDocument($command); } }