Files
unirest-php/lib/Unirest/HttpMethod.php
Ahmad Nassri 2d4f23af38 various cleanups
- added Scrutinizer
- added EditorConfig
- removed closing php tags
- proper usage of require_once
- cleaned extra spacing
2014-12-17 20:47:57 -05:00

13 lines
179 B
PHP

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