Skip to content

Commit

Permalink
add base model
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsisk committed Oct 14, 2019
1 parent cfbad8a commit 0fb775c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/User.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

namespace Barchart\Laravel\RememberAll;

use Illuminate\Foundation\Auth\User as Authenticatable;
use Barchart\Laravel\RememberAll\Contracts\Authenticatable as AuthenticatableContract;

class User extends Authenticatable implements AuthenticatableContract
{
use EloquentAuthenticatable;
}

0 comments on commit 0fb775c

Please sign in to comment.