for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanedev\Socialite\OAuth\One;
use Arcanedev\Socialite\Base\AbstractUser;
/**
* Class User
*
* @package Arcanedev\Socialite\OAuth\One
* @author ARCANEDEV <[email protected]>
*/
class User extends AbstractUser
{
/* ------------------------------------------------------------------------------------------------
| Properties
| ------------------------------------------------------------------------------------------------
* The user's access token secret.
* @var string
public $tokenSecret;
| Getters & Setters
* Set the token on the user.
* @param string $token
* @param string $tokenSecret
* @return self
public function setToken($token, $tokenSecret)
$this->token = $token;
$this->tokenSecret = $tokenSecret;
return $this;
}
* Set the raw user array from the provider.
* @param array $user
public function setRaw(array $user)
return parent::setRaw($user);