From 6655deed5c7f4df4752fc0594adafd7b5995f209 Mon Sep 17 00:00:00 2001 From: Kier Borromeo Date: Mon, 13 Apr 2015 09:26:37 +0800 Subject: [PATCH] Note about `serve` AFAICR, `serve` was removed the core. Check https://github.com/laravel/laravel/commit/80fb944e45801cec81b459f73892dbfc80c39de6 --- _posts/01-03-01-Built-in-Web-Server.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/01-03-01-Built-in-Web-Server.md b/_posts/01-03-01-Built-in-Web-Server.md index 591aa42..04891f1 100644 --- a/_posts/01-03-01-Built-in-Web-Server.md +++ b/_posts/01-03-01-Built-in-Web-Server.md @@ -12,7 +12,7 @@ You might notice a server.php in the Laravel codes. The purpose of this is for y > php -S localhost:8000 server.php {% endhighlight %} -or simply +or simply (note that the following **only** works for Laravel `v4.x`): {% highlight console %} > php artisan serve @@ -22,4 +22,4 @@ You can also specify optional parameters {% highlight console %} > php artisan serve --port=8080 --host=local.dev -{% endhighlight %} \ No newline at end of file +{% endhighlight %}