Beispiel #1
0
 protected function outputReport(OutputInterface $output, Report $report, $context)
 {
     if (!$report->hasDifferences($context)) {
         return;
     }
     $output->writeln('');
     // line clear
     $output->writeln(ucfirst($context) . ' (' . Level::toString($report->getLevelForContext($context)) . ')');
     $this->outputTable($output, $report, $context);
 }