Fix contracts.

This commit is contained in:
Taylor Otwell 2014-08-23 12:50:39 -05:00
parent 3e9e9c6cb7
commit d6719eb5e5
1 changed files with 3 additions and 3 deletions

View File

@ -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;