diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2022-05-12 21:12:46 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2022-05-12 21:12:46 +0200 |
commit | 11cacb52d47b77683fe0bf41039acf8f871064e2 (patch) | |
tree | 6f23a955b83d552be49824267fbcdaadba01c771 /apps/oauth2/lib/Db/Client.php | |
parent | acb4f6089514801a79753451ba1c87a5abc919b9 (diff) | |
download | nextcloud-server-11cacb52d47b77683fe0bf41039acf8f871064e2.tar.gz nextcloud-server-11cacb52d47b77683fe0bf41039acf8f871064e2.zip |
Use property name for addType
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'apps/oauth2/lib/Db/Client.php')
-rw-r--r-- | apps/oauth2/lib/Db/Client.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/oauth2/lib/Db/Client.php b/apps/oauth2/lib/Db/Client.php index f0cac4bed33..78f3d966928 100644 --- a/apps/oauth2/lib/Db/Client.php +++ b/apps/oauth2/lib/Db/Client.php @@ -47,8 +47,8 @@ class Client extends Entity { public function __construct() { $this->addType('id', 'int'); $this->addType('name', 'string'); - $this->addType('redirect_uri', 'string'); - $this->addType('client_identifier', 'string'); + $this->addType('redirectUri', 'string'); + $this->addType('clientIdentifier', 'string'); $this->addType('secret', 'string'); } } |