We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c288e7e commit d64ce37Copy full SHA for d64ce37
src/Command/ErrorFormatter/TableErrorFormatter.php
@@ -89,9 +89,12 @@ public function formatErrors(
89
foreach ($errors as $error) {
90
$message = $error->getMessage();
91
$filePath = $error->getTraitFilePath() ?? $error->getFilePath();
92
- if ($error->getIdentifier() !== null && $error->canBeIgnored()) {
+ if ($error->getIdentifier() !== null) {
93
$message .= "\n";
94
$message .= '🪪 ' . $error->getIdentifier();
95
+ if (!$error->canBeIgnored()) {
96
+ $message .= ' <fg=red>(non-ignorable)</>';
97
+ }
98
}
99
if ($error->getTip() !== null) {
100
$tip = $error->getTip();
0 commit comments