public function OAuthRequest::get_normalized_http_method in OAuth 1.0 6
Same name and namespace in other branches
- 6.3 lib/OAuth.php \OAuthRequest::get_normalized_http_method()
- 7.3 lib/OAuth.php \OAuthRequest::get_normalized_http_method()
just uppercases the http method
1 call to OAuthRequest::get_normalized_http_method()
- OAuthRequest::get_signature_base_string in ./
OAuth.php - Returns the base string of this request
File
- ./
OAuth.php, line 317
Class
Code
public function get_normalized_http_method() {
/*{{{*/
return strtoupper($this->http_method);
}