public function OAuthRequest::get_parameter in OAuth 1.0 7.3
Same name and namespace in other branches
- 6.3 lib/OAuth.php \OAuthRequest::get_parameter()
- 6 OAuth.php \OAuthRequest::get_parameter()
File
- lib/
OAuth.php, line 351 - OAuth 1.0 server and client library.
Class
Code
public function get_parameter($name) {
return isset($this->parameters[$name]) ? $this->parameters[$name] : null;
}