Skip to content

Commit

Permalink
Remove brackets arround URL php artisan serve (laravel#30168)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
thedejavunl authored and i-bajrai committed Oct 4, 2019
1 parent 82422b3 commit 5ba8253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Console/ServeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function handle()
{
chdir(public_path());

$this->line("<info>Laravel development server started:</info> <http://{$this->host()}:{$this->port()}>");
$this->line("<info>Laravel development server started:</info> http://{$this->host()}:{$this->port()}");

passthru($this->serverCommand(), $status);

Expand Down

0 comments on commit 5ba8253

Please sign in to comment.