b0y-101 Mini Shell


Current Path : E:/www/pl/plugins/system/cachecleaner/src/Api/OAuth/
File Upload :
Current File : E:/www/pl/plugins/system/cachecleaner/src/Api/OAuth/OAuthConsumer.php

<?php

/**
 * OAuth Consumer representation.
 */
class OAuthConsumer
{
	public $key;
	public $secret;

	public 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]";
	}
}


Copyright © 2019 by b0y-101