1 | <?php |
||
16 | class AccessToken extends Token implements AccessTokenInterface, CollectionableInterface |
||
17 | { |
||
18 | use CollectionableTrait, SerializableTrait; |
||
19 | |||
20 | /** |
||
21 | * @var RefreshTokenInterface |
||
22 | */ |
||
23 | protected $refreshToken; |
||
24 | |||
25 | /** |
||
26 | * @see AccessTokenInterface::__construct() |
||
27 | */ |
||
28 | public function __construct( |
||
29 | ApplicationInterface $application, |
||
30 | AccountInterface $account = null, |
||
31 | $expireIn = AccessTokenInterface::DEFAULT_TTL, |
||
32 | $hash = null, |
||
33 | RefreshTokenInterface $refreshToken = null |
||
34 | ) { |
||
35 | parent::__construct($application, $account, $expireIn, $hash); |
||
36 | $this->refreshToken = $refreshToken; |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @see AccessTokenInterface::getRefreshToken() |
||
41 | */ |
||
42 | public function getRefreshToken() |
||
43 | { |
||
44 | return $this->refreshToken; |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * @inheritdoc |
||
49 | */ |
||
50 | public static function getScopes() |
||
56 | } |
||
57 |