dolibarr/htdocs/includes/OAuth/Common/Consumer/CredentialsInterface.php

25 lines
377 B
PHP
Raw Permalink Normal View History

2015-10-21 18:23:35 +02:00
<?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();
}