1 | <?php |
||
8 | class ExternalOauthResourceOwner extends GenericResourceOwner |
||
9 | { |
||
10 | use ArrayAccessorTrait; |
||
11 | |||
12 | protected $response; |
||
13 | |||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | public function __construct(array $response = []) |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function getId(): string |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function getEmail(): string |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function getName(): string |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | public function toArray(): array |
||
54 | } |
||
55 |