From b96aacfa046e8f18f064e32d795e000f375f1913 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Mon, 21 Oct 2024 11:46:16 -0300 Subject: [PATCH] fix: linter Signed-off-by: Vitor Mattos --- lib/Db/IdentifyMethod.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Db/IdentifyMethod.php b/lib/Db/IdentifyMethod.php index 279662d1b0..d0367303a4 100644 --- a/lib/Db/IdentifyMethod.php +++ b/lib/Db/IdentifyMethod.php @@ -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);