We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ebcc5a + 326e3a8 commit 5cf5816Copy full SHA for 5cf5816
src/Jenssegers/Mongodb/Auth/User.php
@@ -3,6 +3,7 @@
3
namespace Jenssegers\Mongodb\Auth;
4
5
use Illuminate\Auth\Authenticatable;
6
+use Illuminate\Auth\MustVerifyEmail;
7
use Illuminate\Auth\Passwords\CanResetPassword;
8
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
9
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
@@ -15,5 +16,5 @@ class User extends Model implements
15
16
AuthorizableContract,
17
CanResetPasswordContract
18
{
- use Authenticatable, Authorizable, CanResetPassword;
19
+ use Authenticatable, Authorizable, CanResetPassword, MustVerifyEmail;
20
}
0 commit comments