summaryrefslogtreecommitdiff
path: root/vendor/OAuth/OAuth1/Token/TokenInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/OAuth/OAuth1/Token/TokenInterface.php')
-rwxr-xr-xvendor/OAuth/OAuth1/Token/TokenInterface.php41
1 files changed, 0 insertions, 41 deletions
diff --git a/vendor/OAuth/OAuth1/Token/TokenInterface.php b/vendor/OAuth/OAuth1/Token/TokenInterface.php
deleted file mode 100755
index 0bc3f739..00000000
--- a/vendor/OAuth/OAuth1/Token/TokenInterface.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-
-namespace OAuth\OAuth1\Token;
-
-use OAuth\Common\Token\TokenInterface as BaseTokenInterface;
-
-/**
- * OAuth1 specific token interface
- */
-interface TokenInterface extends BaseTokenInterface
-{
- /**
- * @return string
- */
- public function getAccessTokenSecret();
-
- /**
- * @param string $accessTokenSecret
- */
- public function setAccessTokenSecret($accessTokenSecret);
-
- /**
- * @return string
- */
- public function getRequestTokenSecret();
-
- /**
- * @param string $requestTokenSecret
- */
- public function setRequestTokenSecret($requestTokenSecret);
-
- /**
- * @return string
- */
- public function getRequestToken();
-
- /**
- * @param string $requestToken
- */
- public function setRequestToken($requestToken);
-}