mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-06 17:13:03 +01:00
Printing with Google Cloud Print
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<?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();
|
||||
}
|
||||
Reference in New Issue
Block a user