Composer-compatiblity; PHPDoc

This commit is contained in:
Nikko Bautista
2013-04-24 16:05:06 -07:00
parent 0ab2c583db
commit 8d875f3d02
9 changed files with 308 additions and 300 deletions

View File

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