We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e998cd0 commit 760e068Copy full SHA for 760e068
src/Jenssegers/Mongodb/Auth/User.php
@@ -2,6 +2,7 @@
2
3
namespace Jenssegers\Mongodb\Auth;
4
5
+use Illuminate\Auth\MustVerifyEmail;
6
use Illuminate\Auth\Authenticatable;
7
use Illuminate\Auth\Passwords\CanResetPassword;
8
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
@@ -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