diff options
Diffstat (limited to 'vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php')
-rw-r--r-- | vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php b/vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php new file mode 100644 index 00000000..a33e54e9 --- /dev/null +++ b/vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php @@ -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(); +} |