1 | <?php namespace nyx\auth\id\identities; |
||
15 | class Bitbucket extends oauth2\Identity |
||
16 | { |
||
17 | /** |
||
18 | * {@inheritDoc} |
||
19 | */ |
||
20 | protected static $provider = oauth2\providers\Bitbucket::class; |
||
21 | |||
22 | /** |
||
23 | * @var string The location bound to the Identity. |
||
24 | */ |
||
25 | protected $location; |
||
26 | |||
27 | /** |
||
28 | * @var string The website URL bound to the Identity. |
||
29 | */ |
||
30 | protected $website; |
||
31 | |||
32 | /** |
||
33 | * @var string The time the Identity was created at. |
||
34 | */ |
||
35 | protected $createdAt; |
||
36 | |||
37 | /** |
||
38 | * {@inheritDoc} |
||
39 | */ |
||
40 | public function __construct(oauth2\Token $token, array $data) |
||
54 | } |
||
55 |