Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-04-18 09:44:04 +0300
committerBackportbot <backportbot-noreply@rullzer.com>2019-04-24 16:45:43 +0300
commit907894212b5595a6a80ae92cca8e009b1aeb6432 (patch)
treef72770a8a5c328035c91e0cb5071eea42e2ccb9a /apps
parent7d5ab15ac076d980c04f31d07e6b2fbee11b3ff4 (diff)
Use the proper names when setting entity types
Else this does :boom: Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps')
-rw-r--r--apps/oauth2/lib/Db/AccessToken.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/oauth2/lib/Db/AccessToken.php b/apps/oauth2/lib/Db/AccessToken.php
index 8266a9a0068..24ff7ac8278 100644
--- a/apps/oauth2/lib/Db/AccessToken.php
+++ b/apps/oauth2/lib/Db/AccessToken.php
@@ -45,9 +45,9 @@ class AccessToken extends Entity {
public function __construct() {
$this->addType('id', 'int');
- $this->addType('token_id', 'int');
- $this->addType('client_id', 'int');
- $this->addType('hashed_code', 'string');
- $this->addType('encrypted_token', 'string');
+ $this->addType('tokenId', 'int');
+ $this->addType('clientId', 'int');
+ $this->addType('hashedCode', 'string');
+ $this->addType('encryptedToken', 'string');
}
}