Skip to content

Commit cb725ad

Browse files
authored
Merge pull request #5 from si2w/patch-3
[Updated PR#1746] Add MustVerifyEmail
2 parents 20fd7b0 + 760e068 commit cb725ad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/Jenssegers/Mongodb/Auth/User.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Jenssegers\Mongodb\Auth;
44

5+
use Illuminate\Auth\MustVerifyEmail;
56
use Illuminate\Auth\Authenticatable;
67
use Illuminate\Auth\Passwords\CanResetPassword;
78
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
@@ -15,5 +16,5 @@ class User extends Model implements
1516
AuthorizableContract,
1617
CanResetPasswordContract
1718
{
18-
use Authenticatable, Authorizable, CanResetPassword;
19+
use Authenticatable, Authorizable, CanResetPassword, MustVerifyEmail;
1920
}

0 commit comments

Comments
 (0)