PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
socialite
/
src
/
One
<?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; } }
[+]
..
[-] AbstractProvider.php
[edit]
[-] TwitterProvider.php
[edit]
[-] MissingVerifierException.php
[edit]
[-] User.php
[edit]
[-] MissingTemporaryCredentialsException.php
[edit]