diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-04-18 08:44:04 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-04-18 21:10:52 +0200 |
commit | 21d542f9538d10f966720866f830b27c342e889f (patch) | |
tree | 3de4439551f7094f7dce0ea372ddd7ecd4b7d9f1 /apps | |
parent | f5d0f746f9aff3df3bfd206a02270a7969701c4a (diff) | |
download | nextcloud-server-21d542f9538d10f966720866f830b27c342e889f.tar.gz nextcloud-server-21d542f9538d10f966720866f830b27c342e889f.zip |
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.php | 8 |
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'); } } |