ok
Direktori : /home2/selectio/public_html/fms-worksuite/vendor/laravel/socialite/src/One/ |
Current File : /home2/selectio/public_html/fms-worksuite/vendor/laravel/socialite/src/One/User.php |
<?php namespace Laravel\Socialite\One; use Laravel\Socialite\AbstractUser; class User extends AbstractUser { /** * The user's access token. * * @var string */ public $token; /** * The user's access token secret. * * @var string */ public $tokenSecret; /** * Set the token on the user. * * @param string $token * @param string $tokenSecret * @return $this */ public function setToken($token, $tokenSecret) { $this->token = $token; $this->tokenSecret = $tokenSecret; return $this; } }