Skip to content

Commit 08dced5

Browse files
Merge branch '2.8' into 3.4
* 2.8: [Console] fix CS improve deprecation messages minor symfony#27858 [Console] changed warning verbosity; fixes typo (adrian-enspired)
2 parents 2a2e6f1 + bacb9ed commit 08dced5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public function run(InputInterface $input, OutputInterface $output)
220220
if (function_exists('cli_set_process_title')) {
221221
if (!@cli_set_process_title($this->processTitle)) {
222222
if ('Darwin' === PHP_OS) {
223-
$output->writeln('<comment>Running "cli_get_process_title" as an unprivileged user is not supported on MacOS.</comment>');
223+
$output->writeln('<comment>Running "cli_set_process_title" as an unprivileged user is not supported on MacOS.</comment>', OutputInterface::VERBOSITY_VERY_VERBOSE);
224224
} else {
225225
cli_set_process_title($this->processTitle);
226226
}

0 commit comments

Comments
 (0)