Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / psy / psysh / src / Command / HelpCommand.php
index a50f2562451ef51fb9f61a8abd42cb6a0fa85648..82ec3a835996b07e0ca4754a68e01b37710eb147 100644 (file)
@@ -74,13 +74,13 @@ class HelpCommand extends Command
                 }
 
                 if ($command->getAliases()) {
-                    $aliases = sprintf('<comment>Aliases:</comment> %s', implode(', ', $command->getAliases()));
+                    $aliases = \sprintf('<comment>Aliases:</comment> %s', \implode(', ', $command->getAliases()));
                 } else {
                     $aliases = '';
                 }
 
                 $table->addRow([
-                    sprintf('<info>%s</info>', $name),
+                    \sprintf('<info>%s</info>', $name),
                     $command->getDescription(),
                     $aliases,
                 ]);