Skip to content

Commit

Permalink
Revert "Remove explicit formatting from command signature options"
Browse files Browse the repository at this point in the history
This reverts commit c3aba72 as this is needed to have the option values default to null while giving the documented value of the inferred values.
  • Loading branch information
caendesilva committed Nov 11, 2023
1 parent aea2b3b commit f213efd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/framework/src/Console/Commands/ServeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
class ServeCommand extends Command
{
/** @var string */
protected $signature = 'serve {--host=localhost} {--port=8080}';
protected $signature = 'serve {--host= : <comment>[default: "localhost"]</comment>}} {--port= : <comment>[default: 8080]</comment>}';

/** @var string */
protected $description = 'Start the realtime compiler server.';
Expand Down

0 comments on commit f213efd

Please sign in to comment.