modifying directory name to standard usage

This commit is contained in:
Ahmad Nassri
2014-12-17 22:38:46 -05:00
parent cda471ebdb
commit 6347fa33ee
7 changed files with 1 additions and 1 deletions

12
src/Unirest/Method.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace Unirest;
interface Method
{
const DELETE = 'DELETE';
const GET = 'GET';
const PATCH = 'PATCH';
const POST = 'POST';
const PUT = 'PUT';
}