Skip to content

Commit 0fb775c

Browse files
committed
add base model
1 parent cfbad8a commit 0fb775c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/User.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
namespace Barchart\Laravel\RememberAll;
4+
5+
use Illuminate\Foundation\Auth\User as Authenticatable;
6+
use Barchart\Laravel\RememberAll\Contracts\Authenticatable as AuthenticatableContract;
7+
8+
class User extends Authenticatable implements AuthenticatableContract
9+
{
10+
use EloquentAuthenticatable;
11+
}
12+

0 commit comments

Comments
 (0)