Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/lusitanian/oauth/src/OAuth/Common/Consumer/
Upload File :
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();
}