Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Oct 21, 2024
1 parent c756191 commit b96aacf
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 b96aacf

Please sign in to comment.