We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 502f485 + b1ed1a4 commit adac60fCopy full SHA for adac60f
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