datatable.directory codebase
https://datatable.directory/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
501 B
25 lines
501 B
<?php namespace AdamWathan\EloquentOAuth;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @property $id
|
|
* @property $user_id
|
|
* @property $provider
|
|
* @property $provider_user_id
|
|
* @property $access_token
|
|
*/
|
|
class OAuthIdentity extends Model
|
|
{
|
|
protected static $configuredTable = 'oauth_identities';
|
|
|
|
public static function configureTable($table)
|
|
{
|
|
static::$configuredTable = $table;
|
|
}
|
|
|
|
public function getTable()
|
|
{
|
|
return static::$configuredTable;
|
|
}
|
|
}
|
|
|