%PDF- %PDF-
| Direktori : /home1/lightco1/www/plugins/system/cachecleaner/api/OAuth/ |
| Current File : //home1/lightco1/www/plugins/system/cachecleaner/api/OAuth/OAuthConsumer.php |
<?php
/**
* OAuth Consumer representation.
*/
class OAuthConsumer
{
public $key;
public $secret;
function __construct($key, $secret, $callback_url = null)
{
$this->key = $key;
$this->secret = $secret;
$this->callback_url = $callback_url;
}
function __toString()
{
return "OAuthConsumer[key=$this->key,secret=$this->secret]";
}
}