Procházet zdrojové kódy

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

Use property name for addType
tags/v25.0.0beta1
Carl Schwan před 2 roky
rodič
revize
f4058a2432
Žádný účet není propojen s e-mailovou adresou tvůrce revize
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2
    2
      apps/oauth2/lib/Db/Client.php

+ 2
- 2
apps/oauth2/lib/Db/Client.php Zobrazit soubor

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

Načítá se…
Zrušit
Uložit