1 | <?php |
||
13 | abstract class AbstractProvider extends BaseProvider implements ProviderInterface |
||
14 | { |
||
15 | use ConfigTrait; |
||
16 | |||
17 | /** |
||
18 | 1 | * @var array |
|
19 | */ |
||
20 | 1 | protected $credentialsResponseBody; |
|
21 | |||
22 | public static function serviceContainerKey($providerName) |
||
26 | |||
27 | /** |
||
28 | * @return \SocialiteProviders\Manager\OAuth2\User |
||
29 | */ |
||
30 | public function user() |
||
52 | 3 | ||
53 | 3 | /** |
|
54 | 3 | * Get the access token from the token response body. |
|
55 | * |
||
56 | 3 | * @param string $body |
|
57 | * |
||
58 | 3 | * @return string |
|
59 | 3 | */ |
|
60 | protected function parseAccessToken($body) |
||
64 | } |
||
65 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.