version 0.3

This commit is contained in:
Mashaper
2011-05-05 19:57:08 -07:00
parent a3ba45fe92
commit e375059496
21 changed files with 441 additions and 376 deletions

View File

@@ -0,0 +1,11 @@
<?php
class HttpMethod
{
const DELETE = "DELETE";
const GET = "GET";
const POST = "POST";
const PUT = "PUT";
}
?>