Use the proper names when setting entity types
Else this does 💥
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
7d5ab15ac0
commit
907894212b
|
@ -45,9 +45,9 @@ class AccessToken extends Entity {
|
|||
|
||||
public function __construct() {
|
||||
$this->addType('id', 'int');
|
||||
$this->addType('token_id', 'int');
|
||||
$this->addType('client_id', 'int');
|
||||
$this->addType('hashed_code', 'string');
|
||||
$this->addType('encrypted_token', 'string');
|
||||
$this->addType('tokenId', 'int');
|
||||
$this->addType('clientId', 'int');
|
||||
$this->addType('hashedCode', 'string');
|
||||
$this->addType('encryptedToken', 'string');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue