HttpMethod shouldn't instatiable

This commit is contained in:
Andrey Knupp Vital
2013-10-22 21:30:54 -02:00
parent 6568295220
commit 3291ca8bce

View File

@@ -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";
}