| Current Path : /home/rtorresani/www/vendor/lusitanian/oauth/src/OAuth/Common/Consumer/ |
| Current File : //home/rtorresani/www/vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php |
<?php
namespace OAuth\Common\Consumer;
/**
* Credentials Interface, credentials should implement this.
*/
interface CredentialsInterface
{
/**
* @return string
*/
public function getCallbackUrl();
/**
* @return string
*/
public function getConsumerId();
/**
* @return string
*/
public function getConsumerSecret();
}