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