Commit 1b7f2489 authored by Bas de Nooijer's avatar Bas de Nooijer

uppercased HTTP methods

parent c5a65053
......@@ -48,17 +48,17 @@ class Solarium_Client_Request extends Solarium_Configurable
/**
* Request GET method
*/
const METHOD_GET = 'get';
const METHOD_GET = 'GET';
/**
* Request POST method
*/
const METHOD_POST = 'post';
const METHOD_POST = 'POST';
/**
* Request HEAD method
*/
const METHOD_HEAD = 'head';
const METHOD_HEAD = 'HEAD';
/**
* Default options
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment