| 1 | <?php |
||
| 5 | class User extends \Laravel\Socialite\One\User |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The User Credentials. |
||
| 9 | * |
||
| 10 | * e.g. access_token, refresh_token, etc. |
||
| 11 | * |
||
| 12 | * @var array |
||
| 13 | */ |
||
| 14 | public $accessTokenResponseBody; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Set the credentials on the user. |
||
| 18 | * |
||
| 19 | * Might include things such as the token and refresh token |
||
| 20 | * |
||
| 21 | * @param array $accessTokenResponseBody |
||
| 22 | * |
||
| 23 | * @return $this |
||
| 24 | */ |
||
| 25 | public function setAccessTokenResponseBody(array $accessTokenResponseBody) |
||
| 31 | } |
||
| 32 |