diff options
Diffstat (limited to 'vendor/OAuth/OAuth2/Token')
-rwxr-xr-x | vendor/OAuth/OAuth2/Token/StdOAuth2Token.php | 13 | ||||
-rwxr-xr-x | vendor/OAuth/OAuth2/Token/TokenInterface.php | 9 |
2 files changed, 0 insertions, 22 deletions
diff --git a/vendor/OAuth/OAuth2/Token/StdOAuth2Token.php b/vendor/OAuth/OAuth2/Token/StdOAuth2Token.php deleted file mode 100755 index eaaacac7..00000000 --- a/vendor/OAuth/OAuth2/Token/StdOAuth2Token.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php - -namespace OAuth\OAuth2\Token; - -use OAuth\Common\Token\AbstractToken; - -/** - * Standard OAuth2 token implementation. - * Implements OAuth\OAuth2\Token\TokenInterface for any functionality that might not be provided by AbstractToken. - */ -class StdOAuth2Token extends AbstractToken implements TokenInterface -{ -} diff --git a/vendor/OAuth/OAuth2/Token/TokenInterface.php b/vendor/OAuth/OAuth2/Token/TokenInterface.php deleted file mode 100755 index aa592aa1..00000000 --- a/vendor/OAuth/OAuth2/Token/TokenInterface.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php - -namespace OAuth\OAuth2\Token; - -use OAuth\Common\Token\TokenInterface as BaseTokenInterface; - -interface TokenInterface extends BaseTokenInterface -{ -} |