1 | <?php |
||
10 | class OlxProvider extends AbstractProvider implements ProviderInterface |
||
11 | { |
||
12 | /** |
||
13 | * The scopes being requested. |
||
14 | * |
||
15 | * @var array |
||
16 | */ |
||
17 | protected $scopes = ['basic_user_info']; |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | 1 | protected function getAuthUrl($state) |
|
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | 1 | protected function getTokenUrl() |
|
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | 1 | protected function getTokenFields($code) |
|
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | 1 | protected function getUserByToken($token) |
|
62 | |||
63 | /** |
||
64 | * {@inheritdoc} |
||
65 | */ |
||
66 | 1 | protected function mapUserToObject(array $user) |
|
76 | } |
||
77 |