aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/account/src/Repository/VerificationRepository.php
blob: f7ee3e7888974b0d354cb69214f1e8b5c99ffa86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?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();
    }
}