Skip to content

Commit

Permalink
Updates php server method names to match those in code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve "Uru" West committed Mar 6, 2015
1 parent b4f9bf7 commit e55e6e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/tasks/Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,17 +166,17 @@ Runs PHP server and stops it when task finishes.
``` php
<?php
// run server in /public directory
$this->taskPhpServer(8000)
$this->taskServer(8000)
->dir('public')
->run();

// run with IP 0.0.0.0
$this->taskPhpServer(8000)
$this->taskServer(8000)
->host('0.0.0.0')
->run();

// execute server in background
$this->taskPhpServer(8000)
$this->taskServer(8000)
->background()
->run();
?>
Expand Down

0 comments on commit e55e6e1

Please sign in to comment.