Skip to content

Commit 766e49d

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)