Example #1
0
 /**
  * @param ICommand $command
  */
 public function render(ICommand $command)
 {
     $help = $command->getHelp();
     if ($help) {
         $this->output->writeLine();
         $this->output->writeLine('<header>Help:</header>');
         $this->output->writeLineIndented($help);
     }
 }