Files
unirest-php/lib/Unirest/Method.php
Ahmad Nassri 61eb281692 massive cleanups
- renamed classes
- updated to phpunit
- more PSR compliance
2014-12-17 22:29:03 -05:00

13 lines
175 B
PHP

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