Fix contracts.
This commit is contained in:
parent
3e9e9c6cb7
commit
d6719eb5e5
|
@ -2,11 +2,11 @@
|
|||
|
||||
use Eloquent;
|
||||
use Illuminate\Auth\UserTrait;
|
||||
use Illuminate\Auth\UserInterface;
|
||||
use Illuminate\Auth\Reminders\RemindableTrait;
|
||||
use Illuminate\Auth\Reminders\RemindableInterface;
|
||||
use Illuminate\Contracts\Auth\User as UserContract;
|
||||
use Illuminate\Contracts\Auth\Remindable as RemindableContract;
|
||||
|
||||
class User extends Eloquent implements UserInterface, RemindableInterface {
|
||||
class User extends Eloquent implements UserContract, RemindableContract {
|
||||
|
||||
use UserTrait, RemindableTrait;
|
||||
|
||||
|
|
Loading…
Reference in New Issue