public function OAuthRequest::get_normalized_http_method in jQuery social stream 8
Same name and namespace in other branches
- 8.2 src/Twitter/OAuthRequest.php \Drupal\jquery_social_stream\Twitter\OAuthRequest::get_normalized_http_method()
just uppercases the http method
1 call to OAuthRequest::get_normalized_http_method()
- OAuthRequest::get_signature_base_string in src/
Twitter/ OAuthRequest.php - Returns the base string of this request
File
- src/
Twitter/ OAuthRequest.php, line 161
Class
Namespace
Drupal\jquery_social_stream\TwitterCode
public function get_normalized_http_method() {
return strtoupper($this->http_method);
}