summaryrefslogtreecommitdiff
path: root/vendor/OAuth/OAuth2/Token/StdOAuth2Token.php
blob: eaaacac778b7674e78b5c9dff647aff133cfb3ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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
{
}