Files
unirest-php/lib/Unirest/HttpMethod.php
2013-10-22 21:30:54 -02:00

15 lines
221 B
PHP

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