Cleanup of daenerys console command

This commit is contained in:
Austen McDonald
2016-10-29 22:38:52 -07:00
parent be543bb630
commit 570ce2cdaf
+2 -2
View File
@@ -17,7 +17,7 @@ class ConsoleCommand extends BaseCommand
protected function configure()
{
$this->setName('console')
->setDescription('Start a shell to interact with the game.');
->setDescription('Start a shell to interact with the game');
}
/**
@@ -33,7 +33,7 @@ class ConsoleCommand extends BaseCommand
print("Try things like `\$g::getVersion()`. To quit, ^D or `exit();`.\n");
print("\n");
$boris = new \Boris\Boris('🐲 > '); // For some reason we need the extra spaces.
$boris = new \Boris\Boris('🐲 > ');
$boris->setLocal(array(
'g' => $this->game
));