Unverified Commit cb725ad4 authored by Divine's avatar Divine Committed by GitHub

Merge pull request #5 from si2w/patch-3

[Updated PR#1746] Add MustVerifyEmail
parents 20fd7b02 760e0688
......@@ -2,6 +2,7 @@
namespace Jenssegers\Mongodb\Auth;
use Illuminate\Auth\MustVerifyEmail;
use Illuminate\Auth\Authenticatable;
use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
......@@ -15,5 +16,5 @@ class User extends Model implements
AuthorizableContract,
CanResetPasswordContract
{
use Authenticatable, Authorizable, CanResetPassword;
use Authenticatable, Authorizable, CanResetPassword, MustVerifyEmail;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment