8000 [Console] fix CS · symfony/symfony@bacb9ed · GitHub
[go: up one dir, main page]

Skip to content

Commit bacb9ed

Browse files
[Console] fix CS
1 parent c35772c commit bacb9ed

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Symfony/Component/Console/Command/Command.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,7 @@ public function run(InputInterface $input, OutputInterface $output)
210210
if (function_exists('cli_set_process_title')) {
211211
if (!@cli_set_process_title($this->processTitle)) {
212212
if ('Darwin' === PHP_OS) {
213-
$output->writeln(
214-
'<comment>Running "cli_set_process_title" as an unprivileged user is not supported on MacOS.</comment>',
215-
OutputInterface::VERBOSITY_VERY_VERBOSE
216-
);
213+
$output->writeln('<comment>Running "cli_set_process_title" as an unprivileged user is not supported on MacOS.</comment>', OutputInterface::VERBOSITY_VERY_VERBOSE);
217214
} else {
218215
cli_set_process_title($this->processTitle);
219216
}

0 commit comments

Comments
 (0)
0