Files
unirest-php/main/mashape/http/HttpMethod.php
2011-05-05 19:57:08 -07:00

11 lines
119 B
PHP

<?php
class HttpMethod
{
const DELETE = "DELETE";
const GET = "GET";
const POST = "POST";
const PUT = "PUT";
}
?>