File "ClientCredentialsInterface.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/league/oauth1-client/src/Credentials/ClientCredentialsInterface.php
File size: 422 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace League\OAuth1\Client\Credentials;
interface ClientCredentialsInterface extends CredentialsInterface
{
/**
* Get the credentials callback URI.
*
* @return string
*/
public function getCallbackUri();
/**
* Set the credentials callback URI.
*
* @param string $callbackUri
*
* @return void
*/
public function setCallbackUri($callbackUri);
}