Printing with Google Cloud Print

This commit is contained in:
frederic34
2015-10-21 18:23:35 +02:00
parent b45f5039ed
commit 1694c690ed
107 changed files with 11017 additions and 190 deletions

View File

@@ -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();
}