HttpMethod shouldn't instatiable
This commit is contained in:
@@ -1,9 +1,15 @@
|
||||
<?php namespace Unirest;
|
||||
class HttpMethod
|
||||
{
|
||||
<?php
|
||||
|
||||
namespace Unirest;
|
||||
|
||||
interface HttpMethod
|
||||
{
|
||||
|
||||
const DELETE = "DELETE";
|
||||
const GET = "GET";
|
||||
const POST = "POST";
|
||||
const PUT = "PUT";
|
||||
const PATCH = "PATCH";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user