?iť?

Your IP : 18.119.110.139


Current Path : /home/s/c/g/scgforma/www/soc064/htdocs/includes/OAuth/Common/Consumer/
Upload File :
Current File : /home/s/c/g/scgforma/www/soc064/htdocs/includes/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();
}