Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit bacb9ed

Browse filesBrowse files
[Console] fix CS
1 parent c35772c commit bacb9ed
Copy full SHA for bacb9ed

File tree

Expand file treeCollapse file tree

1 file changed

+1
-4
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-4
lines changed

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Console/Command/Command.php
+1-4Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.