aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/bshaffer/oauth2-server-php/src/OAuth2/Storage/JwtAccessTokenInterface.php
blob: 3abb2aa2d5286ab4eae90eb0e3fc293263911554 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace OAuth2\Storage;

/**
 * No specific methods, but allows the library to check "instanceof"
 * against interface rather than class
 *
 * @author Brent Shaffer <bshafs at gmail dot com>
 */
interface JwtAccessTokenInterface extends AccessTokenInterface
{

}