summaryrefslogtreecommitdiff
path: root/vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-11-06 06:57:39 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-11-06 06:57:39 -0500
commit420d0ca4dd6cf075204867de28c2e6d5b1b68184 (patch)
treee7723f4b0687d82300ca5b4d38e3ab0ff3fc13cf /vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php
parentcfe1e13d4a2b964c950b5e3daa8cafab207f1158 (diff)
Remove vendor again
Diffstat (limited to 'vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php')
-rw-r--r--vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php b/vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php
deleted file mode 100644
index a33e54e9..00000000
--- a/vendor/lusitanian/oauth/src/OAuth/Common/Consumer/CredentialsInterface.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?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();
-}