diff --git a/com_oauthserver/administrator/src/Table/AccessTokenTable.php b/com_oauthserver/administrator/src/Table/AccessTokenTable.php index cd8c00e..8ac4e48 100644 --- a/com_oauthserver/administrator/src/Table/AccessTokenTable.php +++ b/com_oauthserver/administrator/src/Table/AccessTokenTable.php @@ -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'); } }