Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _posts/01-03-01-Built-in-Web-Server.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -22,4 +22,4 @@ You can also specify optional parameters

{% highlight console %}
> php artisan serve --port=8080 --host=local.dev
{% endhighlight %}
{% endhighlight %}