From afca62e0fc12fe3468258aa6241b7a3552679345 Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Sat, 11 Nov 2023 13:35:39 +0100 Subject: [PATCH] Wrap signature over multiple lines --- packages/framework/src/Console/Commands/ServeCommand.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/framework/src/Console/Commands/ServeCommand.php b/packages/framework/src/Console/Commands/ServeCommand.php index 75240db7004..bc738dacb7b 100644 --- a/packages/framework/src/Console/Commands/ServeCommand.php +++ b/packages/framework/src/Console/Commands/ServeCommand.php @@ -22,7 +22,10 @@ class ServeCommand extends Command { /** @var string */ - protected $signature = 'serve {--host= : [default: "localhost"]}} {--port= : [default: 8080]}'; + protected $signature = 'serve + {--host= : [default: "localhost"]}} + {--port= : [default: 8080]} + '; /** @var string */ protected $description = 'Start the realtime compiler server.';