From 5ba82535c62685dc30425a6e020d04e87511a23c Mon Sep 17 00:00:00 2001 From: thedejavunl Date: Thu, 3 Oct 2019 18:17:59 +0200 Subject: [PATCH] Remove brackets arround URL php artisan serve (#30168) To allow opening the development URL in Visual Studio Code with ctrl + click the bracket after the URL needs to be removed. This patch wil remove the brackets around the url. --- src/Illuminate/Foundation/Console/ServeCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Foundation/Console/ServeCommand.php b/src/Illuminate/Foundation/Console/ServeCommand.php index 8b6511c04b30..b931ea227e71 100644 --- a/src/Illuminate/Foundation/Console/ServeCommand.php +++ b/src/Illuminate/Foundation/Console/ServeCommand.php @@ -42,7 +42,7 @@ public function handle() { chdir(public_path()); - $this->line("Laravel development server started: host()}:{$this->port()}>"); + $this->line("Laravel development server started: http://{$this->host()}:{$this->port()}"); passthru($this->serverCommand(), $status);