Merge pull request #32366 from nextcloud/bug/noid/fix-property-name

Use property name for addType
This commit is contained in:
Carl Schwan 2022-05-13 13:44:00 +02:00 committed by GitHub
commit f4058a2432
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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');
}
}