95bb48edce3bfbae8fee472539e497cd6b4b4049
[WP-Plugins/glm-member-db.git] /
1 <?php
2 namespace PayPal\Auth\Oauth;
3 class OAuthConsumer {
4         public $key;
5         public $secret;
6
7         function __construct($key, $secret, $callback_url=NULL) {
8                 $this->key = $key;
9                 $this->secret = $secret;
10                 $this->callback_url = $callback_url;
11         }
12
13         function __toString() {
14                 return "OAuthConsumer[key=$this->key,secret=$this->secret]";
15         }
16 }
17 ?>