From 11cacb52d47b77683fe0bf41039acf8f871064e2 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Thu, 12 May 2022 21:12:46 +0200 Subject: [PATCH] Use property name for addType Signed-off-by: Daniel Kesselberg --- apps/oauth2/lib/Db/Client.php | 4 ++-- 1 file 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'); } } -- 2.39.5