You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$io->warning(sprintf('%d YAML files have valid syntax and %d contain errors.', $countFiles - $erroredFiles, $erroredFiles));
175
+
$io->warning(sprintf('%d YAML files have valid syntax and %d contain errors.%s', $countFiles - $erroredFiles, $erroredFiles, $suggestTagOption ? ' Use the --parse-tags option if you want parse custom tags.' : ''));
171
176
}
172
177
173
178
returnmin($erroredFiles, 1);
@@ -182,6 +187,10 @@ private function displayJson(SymfonyStyle $io, array $filesInfo)
182
187
if (!$v['valid']) {
183
188
++$errors;
184
189
}
190
+
191
+
if (isset($v['message']) && false !== strpos($v['message'], 'PARSE_CUSTOM_TAGS')) {
192
+
$v['message'] .= ' Use the --parse-tags option if you want parse custom tags.';
0 commit comments