Skip to content

Commit

Permalink
Merge pull request #3813 from LibreSign/fix/type-of
Browse files Browse the repository at this point in the history
fix: type of
  • Loading branch information
vitormattos authored Oct 21, 2024
2 parents 5cc9c5d + 0761985 commit 2e50a76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Db/IdentifyMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ class IdentifyMethod extends Entity {

public function __construct() {
$this->addType('signRequestId', 'integer');
$this->addType('mandatory', 'int');
$this->addType('mandatory', 'integer');
$this->addType('code', 'string');
$this->addType('identifierKey', 'string');
$this->addType('identifierValue', 'string');
$this->addType('attempts', 'int');
$this->addType('attempts', 'integer');
$this->addType('identifiedAtDate', 'datetime');
$this->addType('lastAttemptDate', 'datetime');
$this->addType('metadata', Types::JSON);
Expand Down

0 comments on commit 2e50a76

Please sign in to comment.