Skip to content

Commit 5cf5816

Browse files
authored
Merge pull request #1933 from divine/pr_1746
[Updated PR#1746] Add MustVerifyEmail
2 parents 9ebcc5a + 326e3a8 commit 5cf5816

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Jenssegers/Mongodb/Auth/User.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace Jenssegers\Mongodb\Auth;
44

55
use Illuminate\Auth\Authenticatable;
6+
use Illuminate\Auth\MustVerifyEmail;
67
use Illuminate\Auth\Passwords\CanResetPassword;
78
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
89
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
@@ -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)