From d6719eb5e5a4f348a40b2c0e6dc83853fe350307 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 23 Aug 2014 12:50:39 -0500 Subject: [PATCH] Fix contracts. --- app/User.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/User.php b/app/User.php index e99cff0e..31de77d8 100644 --- a/app/User.php +++ b/app/User.php @@ -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;