diff --git a/src/Command/ErrorFormatter/TableErrorFormatter.php b/src/Command/ErrorFormatter/TableErrorFormatter.php index cb754dd43a..acb94e96d3 100644 --- a/src/Command/ErrorFormatter/TableErrorFormatter.php +++ b/src/Command/ErrorFormatter/TableErrorFormatter.php @@ -117,8 +117,8 @@ public function formatErrors( } if (count($analysisResult->getNotFileSpecificErrors()) > 0) { - $style->table(['Error'], array_map(static function (string $error): array { - return [$error]; + $style->table(['', 'Error'], array_map(static function (string $error): array { + return ['', $error]; }, $analysisResult->getNotFileSpecificErrors())); }