From 3b92eb5cb540e2b151cad62479ce02f201eb5ff2 Mon Sep 17 00:00:00 2001 From: Marc Morera Date: Fri, 8 Feb 2019 18:24:34 +0100 Subject: [PATCH] Fixed lines --- Command/ApisearchCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Command/ApisearchCommand.php b/Command/ApisearchCommand.php index c9b29f1..6fa1c6e 100644 --- a/Command/ApisearchCommand.php +++ b/Command/ApisearchCommand.php @@ -72,7 +72,7 @@ protected static function configureFormatter(OutputInterface $output) $formatter = $output->getFormatter(); $formatter->setStyle('system', new OutputFormatterStyle('green')); $formatter->setStyle('line', new OutputFormatterStyle('yellow')); - $formatter->setStyle('failLine', new OutputFormatterStyle('red')); + $formatter->setStyle('fail', new OutputFormatterStyle('red')); $formatter->setStyle('info', new OutputFormatterStyle('blue')); $formatter->setStyle('body', new OutputFormatterStyle('white')); $formatter->setStyle('strong', new OutputFormatterStyle(null, null, ['bold'])); @@ -154,7 +154,7 @@ protected static function printMessageFail( $output, $header, $body, - 'failLine' + 'fail' ); }