Files
trf_certest/vendor/league/oauth1-client/src/Credentials/ClientCredentialsInterface.php
T
2025-03-28 08:52:46 +01:00

23 lines
422 B
PHP

<?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);
}