From f33a12b20baeb848b0a5bb5eb6c9f4d74e66c63c Mon Sep 17 00:00:00 2001 From: Tomas Votruba Date: Thu, 27 Aug 2026 10:27:50 +0100 Subject: [PATCH] [Console] Fix newline formatting of deprecated skipped rules warning --- src/Console/Command/ProcessCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Console/Command/ProcessCommand.php b/src/Console/Command/ProcessCommand.php index 488bb8bb15b..3584f357ba8 100644 --- a/src/Console/Command/ProcessCommand.php +++ b/src/Console/Command/ProcessCommand.php @@ -111,9 +111,9 @@ protected function execute(InputInterface $input, OutputInterface $output): int // 0. warn about skipped rules that are deprecated if ($this->skippedClassResolver->resolveDeprecatedSkippedClasses() !== []) { $this->symfonyStyle->warning(sprintf( - 'These rules are skipped, but are deprecated. Most likely you do not need to skip them anymore as not part of any set and remove them: %s* %s', + 'These rules are skipped, but are deprecated. Most likely you do not need to skip them anymore as not part of any set and remove them: %s%s', "\n\n", - implode(' * ', $this->skippedClassResolver->resolveDeprecatedSkippedClasses()) . "\n" + '* ' . implode("\n* ", $this->skippedClassResolver->resolveDeprecatedSkippedClasses()) . "\n" )); }