We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6e2033 commit 482361eCopy full SHA for 482361e
1 file changed
lib/User.php
@@ -341,13 +341,12 @@ public static function cleanupTokens() {
341
]);
342
}
343
344
- public static getExistingVerifyTokens() {
345
- Db::connect();
346
- $query = Db::$pdo->prepare(
347
- 'SELECT code FROM verify'
348
- );
349
- $existingTokens = $query->execute();
350
- return $existingTokens;
351
- }
352
-
+ public static function getExistingVerifyTokens() {
+ Db::connect();
+ $query = Db::$pdo->prepare(
+ 'SELECT code FROM verify'
+ );
+ $existingTokens = $query->execute();
+ return $existingTokens;
+ }
353
0 commit comments