summaryrefslogtreecommitdiff
path: root/vendor/OAuth/OAuth1/Service/ServiceInterface.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-11-04 21:33:05 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-11-04 21:33:05 -0500
commit135b921db75da5995eab7e36393ecd4d2b0bc66f (patch)
tree46efc60fcf1f9d5c57ab1fb9418c2acfbda0698a /vendor/OAuth/OAuth1/Service/ServiceInterface.php
parent850645dd6b22f5b495d1680e0b49540e0ebf9bd3 (diff)
Switch to composer
Diffstat (limited to 'vendor/OAuth/OAuth1/Service/ServiceInterface.php')
-rwxr-xr-xvendor/OAuth/OAuth1/Service/ServiceInterface.php45
1 files changed, 0 insertions, 45 deletions
diff --git a/vendor/OAuth/OAuth1/Service/ServiceInterface.php b/vendor/OAuth/OAuth1/Service/ServiceInterface.php
deleted file mode 100755
index 3f91fbf2..00000000
--- a/vendor/OAuth/OAuth1/Service/ServiceInterface.php
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-
-namespace OAuth\OAuth1\Service;
-
-use OAuth\Common\Consumer\CredentialsInterface;
-use OAuth\Common\Storage\TokenStorageInterface;
-use OAuth\Common\Token\TokenInterface;
-use OAuth\Common\Http\Client\ClientInterface;
-use OAuth\Common\Http\Uri\UriInterface;
-use OAuth\Common\Http\Exception\TokenResponseException;
-use OAuth\Common\Service\ServiceInterface as BaseServiceInterface;
-use OAuth\OAuth1\Signature\SignatureInterface;
-
-/**
- * Defines the common methods across OAuth 1 services.
- */
-interface ServiceInterface extends BaseServiceInterface
-{
- /**
- * Retrieves and stores/returns the OAuth1 request token obtained from the service.
- *
- * @return TokenInterface $token
- *
- * @throws TokenResponseException
- */
- public function requestRequestToken();
-
- /**
- * Retrieves and stores/returns the OAuth1 access token after a successful authorization.
- *
- * @param string $token The request token from the callback.
- * @param string $verifier
- * @param string $tokenSecret
- *
- * @return TokenInterface $token
- *
- * @throws TokenResponseException
- */
- public function requestAccessToken($token, $verifier, $tokenSecret);
-
- /**
- * @return UriInterface
- */
- public function getRequestTokenEndpoint();
-}