Skip to content

Instantly share code, notes, and snippets.

@jawngee
Created July 16, 2009 07:11
Show Gist options
  • Save jawngee/148295 to your computer and use it in GitHub Desktop.
Save jawngee/148295 to your computer and use it in GitHub Desktop.
<?
class IndexController extends Controller
{
// Handles PUT
public function put_index()
{
}
// Handles POST
public function post_index()
{
}
// you can skip the prefix for GET
public function index()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment