various cleanups

- added Scrutinizer
- added EditorConfig
- removed closing php tags
- proper usage of require_once
- cleaned extra spacing
This commit is contained in:
Ahmad Nassri
2014-12-17 20:47:57 -05:00
parent 2bd214f2d9
commit 2d4f23af38
6 changed files with 67 additions and 48 deletions

View File

@@ -4,11 +4,9 @@ namespace Unirest;
interface HttpMethod
{
const DELETE = "DELETE";
const GET = "GET";
const POST = "POST";
const PUT = "PUT";
const PATCH = "PATCH";
}
const DELETE = 'DELETE';
const GET = 'GET';
const PATCH = 'PATCH';
const POST = 'POST';
const PUT = 'PUT';
}