mirror of
https://github.com/webmasterskaya/joomla-oauth-server.git
synced 2024-11-23 22:34:50 +03:00
remove columns aliases
This commit is contained in:
parent
8bf4c1d9dc
commit
f68dd0ce02
@ -18,9 +18,9 @@ use Joomla\Database\DatabaseDriver;
|
||||
* @property int $id
|
||||
* @property string $identifier
|
||||
* @property \DateTimeInterface|string $expiry
|
||||
* @property int|null $userId
|
||||
* @property int|null $user_id
|
||||
* @property string|array $scopes
|
||||
* @property int $clientId
|
||||
* @property int $client_id
|
||||
* @property bool|int $revoked
|
||||
*
|
||||
* @since version
|
||||
@ -48,8 +48,5 @@ class AccessTokenTable extends Table implements RevokedTableInterface
|
||||
public function __construct(DatabaseDriver $db)
|
||||
{
|
||||
parent::__construct('#__webmasterskaya_oauthserver_access_tokens', 'id', $db);
|
||||
|
||||
$this->setColumnAlias('client_id', 'clientId');
|
||||
$this->setColumnAlias('user_id', 'userId');
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user