diff options
Diffstat (limited to 'main/app/sprinkles/account/src/Repository/VerificationRepository.php')
-rw-r--r-- | main/app/sprinkles/account/src/Repository/VerificationRepository.php | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/main/app/sprinkles/account/src/Repository/VerificationRepository.php b/main/app/sprinkles/account/src/Repository/VerificationRepository.php deleted file mode 100644 index f7ee3e7..0000000 --- a/main/app/sprinkles/account/src/Repository/VerificationRepository.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php
-/**
- * UserFrosting (http://www.userfrosting.com)
- *
- * @link https://github.com/userfrosting/UserFrosting
- * @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
- */
-
-namespace UserFrosting\Sprinkle\Account\Repository;
-
-/**
- * Token repository class for new account verifications.
- *
- * @author Alex Weissman (https://alexanderweissman.com)
- * @see https://learn.userfrosting.com/users/user-accounts
- */
-class VerificationRepository extends TokenRepository
-{
- /**
- * {@inheritDoc}
- */
- protected $modelIdentifier = 'verification';
-
- /**
- * {@inheritDoc}
- */
- protected function updateUser($user, $args) {
- $user->flag_verified = 1;
- $user->save();
- }
-}
|