Seditio Source
Root |
./othercms/phpBB3/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();
}