modifying directory name to standard usage
This commit is contained in:
12
src/Unirest/Method.php
Normal file
12
src/Unirest/Method.php
Normal 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';
|
||||
}
|
||||
Reference in New Issue
Block a user