Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjgreen committed Jun 17, 2014
1 parent 794e89c commit ab3b0f2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,29 +189,29 @@ class Test {
return 'This is the default page and will respond to /controller and /controller/index';
}

public function anyTestany()
public function anyTest()
{
return 'This will respond to /controller/testany with any method';
return 'This will respond to /controller/test with any method';
}

public function getTestget()
public function getTest()
{
return 'This will respond to /controller/testget with only a GET method';
return 'This will respond to /controller/test with only a GET method';
}

public function postTestpost()
public function postTest()
{
return 'This will respond to /controller/testpost with only a POST method';
return 'This will respond to /controller/test with only a POST method';
}

public function putTestput()
public function putTest()
{
return 'This will respond to /controller/testput with only a PUT method';
return 'This will respond to /controller/test with only a PUT method';
}

public function deleteTestdelete()
public function deleteTest()
{
return 'This will respond to /controller/testdelete with only a DELETE method';
return 'This will respond to /controller/test with only a DELETE method';
}
}

Expand Down

0 comments on commit ab3b0f2

Please sign in to comment.