diff --git a/application/clicommands/VersionCommand.php b/application/clicommands/VersionCommand.php index 13c62dddb..9bdd4432c 100644 --- a/application/clicommands/VersionCommand.php +++ b/application/clicommands/VersionCommand.php @@ -47,9 +47,9 @@ class VersionCommand extends Command } } - printf("%-${maxLength}s %-9s \n", 'MODULE', 'VERSION'); + printf("%-{$maxLength}s %-9s \n", 'MODULE', 'VERSION'); foreach ($modules as $module) { - printf("%-${maxLength}s %-9s \n", $module->getName(), $module->getVersion()); + printf("%-{$maxLength}s %-9s \n", $module->getName(), $module->getVersion()); } } }