Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Db/TotpSecretMapper.php')
-rw-r--r--lib/Db/TotpSecretMapper.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Db/TotpSecretMapper.php b/lib/Db/TotpSecretMapper.php
index 567d61d..929a912 100644
--- a/lib/Db/TotpSecretMapper.php
+++ b/lib/Db/TotpSecretMapper.php
@@ -30,7 +30,6 @@ use OCP\IDBConnection;
use OCP\IUser;
class TotpSecretMapper extends QBMapper {
-
public function __construct(IDBConnection $db) {
parent::__construct($db, 'twofactor_totp_secrets');
}
@@ -57,5 +56,4 @@ class TotpSecretMapper extends QBMapper {
}
return TotpSecret::fromRow($row);
}
-
}