Commit d6719eb5 authored by Taylor Otwell's avatar Taylor Otwell

Fix contracts.

parent 3e9e9c6c
......@@ -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;
......
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