writelnComment() public method

public writelnComment ( $message, $type = self::OUTPUT_NORMAL )
Example #1
0
 public static function exceptionHandler(\Exception $e)
 {
     $output = new ConsoleOutput();
     $output->writelnError($e->getMessage());
     $output->writelnComment($e->getTraceAsString());
 }