You are here

public function sOAuthRequest::get_normalized_http_method in jQuery social stream 7

Same name and namespace in other branches
  1. 7.2 jquery_social_stream.js.inc \sOAuthRequest::get_normalized_http_method()

just uppercases the http method

1 call to sOAuthRequest::get_normalized_http_method()
sOAuthRequest::get_signature_base_string in ./jquery_social_stream.js.inc
Returns the base string of this request

File

./jquery_social_stream.js.inc, line 701
JS callbacks.

Class

sOAuthRequest

Code

public function get_normalized_http_method() {
  return strtoupper($this->http_method);
}