added namespace to avoid class collision

This commit is contained in:
Sam Sullivan
2013-06-12 10:53:41 -05:00
parent 82791aa32e
commit 5f4cc3ad16
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
<?php
<?php namespace Unirest;
class HttpMethod
{
const DELETE = "DELETE";
@@ -6,4 +6,4 @@ class HttpMethod
const POST = "POST";
const PUT = "PUT";
const PATCH = "PATCH";
}
}