diff --git a/examples/Commands/HelpHandler.php b/examples/Commands/HelpHandler.php index e42fc21..79e4fcb 100644 --- a/examples/Commands/HelpHandler.php +++ b/examples/Commands/HelpHandler.php @@ -37,7 +37,9 @@ public function handle() $this->writeln(' help - This information screen'); $this->writeln(' test - A silly test example'); $this->writeln(' flags - Example using options.'); + $this->writeln(' profile - Example of required --name and --age options.'); $this->writeln(' check:name - User input example'); + $this->writeln(); $this->exitWithSuccess(); }