Files
unirest-php/lib/Unirest/HttpMethod.php
2014-03-18 11:15:38 -07:00

14 lines
188 B
PHP

<?php
namespace Unirest;
interface HttpMethod
{
const DELETE = "DELETE";
const GET = "GET";
const POST = "POST";
const PUT = "PUT";
const PATCH = "PATCH";
}