1 | <?php |
||
8 | class OAuth2Token extends AbstractToken implements TokenInterface |
||
9 | { |
||
10 | private $credentials; |
||
11 | private $providerKey; |
||
12 | private $client; |
||
13 | |||
14 | public function __construct($client, $user, $credentials, $providerKey, array $roles = [], array $scopes = []) |
||
33 | |||
34 | |||
35 | public function getCredentials() |
||
39 | |||
40 | public function getProviderKey() |
||
44 | |||
45 | public function getClient() |
||
49 | } |
||
50 |