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:
authorCarl Schwan <carl@carlschwan.eu>2022-05-13 14:44:00 +0300
committerGitHub <noreply@github.com>2022-05-13 14:44:00 +0300
commitf4058a2432f748ffff6d7e45f2fb79ca383f8dd1 (patch)
treec8830870066eab7c92c3a3cebd9f6cb12853896c /apps
parent52bb29bde117f13d8df106bdc6862efe12314448 (diff)
parent11cacb52d47b77683fe0bf41039acf8f871064e2 (diff)
Merge pull request #32366 from nextcloud/bug/noid/fix-property-name
Use property name for addType
Diffstat (limited to 'apps')
-rw-r--r--apps/oauth2/lib/Db/Client.php4
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');
}
}