aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/SetupChecks.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/Command/SetupChecks.php')
-rw-r--r--core/Command/SetupChecks.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/core/Command/SetupChecks.php b/core/Command/SetupChecks.php
index 60517e224b3..6ef67726839 100644
--- a/core/Command/SetupChecks.php
+++ b/core/Command/SetupChecks.php
@@ -61,12 +61,12 @@ class SetupChecks extends Base {
$description = $this->richTextFormatter->richToParsed($description, $descriptionParameters);
}
$output->writeln(
- "\t\t" .
- ($styleTag !== null ? "<{$styleTag}>" : '') .
- "{$emoji} " .
- ($check->getName() ?? $check::class) .
- ($description !== null ? ': ' . $description : '') .
- ($styleTag !== null ? "</{$styleTag}>" : ''),
+ "\t\t"
+ . ($styleTag !== null ? "<{$styleTag}>" : '')
+ . "{$emoji} "
+ . ($check->getName() ?? $check::class)
+ . ($description !== null ? ': ' . $description : '')
+ . ($styleTag !== null ? "</{$styleTag}>" : ''),
$verbosity
);
}