Skip to content

Commit a27f748

Browse files
committed
Extend model.
1 parent 6fe851c commit a27f748

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/User.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?php namespace App;
22

3-
use Eloquent;
43
use Illuminate\Auth\UserTrait;
4+
use Illuminate\Database\Eloquent\Model;
55
use Illuminate\Auth\Reminders\RemindableTrait;
66
use Illuminate\Contracts\Auth\User as UserContract;
77
use Illuminate\Contracts\Auth\Remindable as RemindableContract;
88

9-
class User extends Eloquent implements UserContract, RemindableContract {
9+
class User extends Model implements UserContract, RemindableContract {
1010

1111
use UserTrait, RemindableTrait;
1212

0 commit comments

Comments
 (0)