mirror of
https://github.com/pestphp/pest.git
synced 2026-03-09 17:27:22 +01:00
feat: support for deprecated, notices, and warnings
This commit is contained in:
@ -36,8 +36,8 @@ final class CompactPrinter
|
||||
'.' => ['gray', '.'],
|
||||
'S' => ['yellow', 's'],
|
||||
'T' => ['cyan', 't'],
|
||||
'I' => ['yellow', 'i'],
|
||||
'N' => ['yellow', 'i'],
|
||||
'I' => ['yellow', '!'],
|
||||
'N' => ['yellow', '!'],
|
||||
'D' => ['yellow', '!'],
|
||||
'R' => ['yellow', '!'],
|
||||
'W' => ['yellow', '!'],
|
||||
@ -106,7 +106,9 @@ final class CompactPrinter
|
||||
*/
|
||||
public function errors(State $state): void
|
||||
{
|
||||
$this->style->writeErrorsSummary($state, false);
|
||||
$this->output->writeln('');
|
||||
|
||||
$this->style->writeErrorsSummary($state);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user