function OAuthToken::__construct in OAuth 1.0 6
Same name and namespace in other branches
- 6.3 lib/OAuth.php \OAuthToken::__construct()
- 7.3 lib/OAuth.php \OAuthToken::__construct()
key = the token secret = the token secret
File
- ./
OAuth.php, line 30
Class
Code
function __construct($key, $secret) {
/*{{{*/
$this->key = $key;
$this->secret = $secret;
}