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; <?php
class HttpMethod
{ namespace Unirest;
const DELETE = "DELETE";
const GET = "GET"; interface HttpMethod
const POST = "POST"; {
const PUT = "PUT";
const PATCH = "PATCH"; const DELETE = "DELETE";
} const GET = "GET";
const POST = "POST";
const PUT = "PUT";
const PATCH = "PATCH";
}