for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SocialiteProviders\Manager\OAuth1;
class User extends \Laravel\Socialite\One\User
{
/**
* The User Credentials.
*
* e.g. access_token, refresh_token, etc.
* @var array
*/
public $accessTokenResponseBody;
* Set the credentials on the user.
* Might include things such as the token and refresh token
* @param array $accessTokenResponseBody
* @return $this
public function setAccessTokenResponseBody(array $accessTokenResponseBody)
$this->accessTokenResponseBody = $accessTokenResponseBody;
return $this;
}