Skip to content

Commit 90a3b2e

Browse files
committed
chore: updates after rebase
Signed-off-by: Vitor Mattos <vitor@php.rio>
1 parent 4ff9fe7 commit 90a3b2e

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

lib/Db/SignRequest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ class SignRequest extends Entity {
4141
protected ?string $signedHash = null;
4242
protected ?array $metadata = null;
4343
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');
44+
$this->addType('id', Types::INTEGER);
45+
$this->addType('fileId', Types::INTEGER);
46+
$this->addType('uuid', Types::STRING);
47+
$this->addType('displayName', Types::STRING);
48+
$this->addType('description', Types::STRING);
4949
$this->addType('createdAt', Types::DATETIME);
5050
$this->addType('signed', Types::DATETIME);
51-
$this->addType('signedHash', 'string');
51+
$this->addType('signedHash', Types::STRING);
5252
$this->addType('metadata', Types::JSON);
5353
}
5454
}

0 commit comments

Comments
 (0)