We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ff9fe7 commit 90a3b2eCopy full SHA for 90a3b2e
1 file changed
lib/Db/SignRequest.php
@@ -41,14 +41,14 @@ class SignRequest extends Entity {
41
protected ?string $signedHash = null;
42
protected ?array $metadata = null;
43
public function __construct() {
44
- $this->addType('id', 'integer');
45
- $this->addType('fileId', 'integer');
46
- $this->addType('uuid', 'string');
47
- $this->addType('displayName', 'string');
48
- $this->addType('description', 'string');
+ $this->addType('id', Types::INTEGER);
+ $this->addType('fileId', Types::INTEGER);
+ $this->addType('uuid', Types::STRING);
+ $this->addType('displayName', Types::STRING);
+ $this->addType('description', Types::STRING);
49
$this->addType('createdAt', Types::DATETIME);
50
$this->addType('signed', Types::DATETIME);
51
- $this->addType('signedHash', 'string');
+ $this->addType('signedHash', Types::STRING);
52
$this->addType('metadata', Types::JSON);
53
}
54
0 commit comments