Skip to content

Commit

Permalink
implement lunar user contract
Browse files Browse the repository at this point in the history
  • Loading branch information
repl6669 committed Aug 23, 2024
1 parent 8564779 commit a33ed8e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Stubs/Users/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Lunar\Base\LunarUser as LunarUserContract;
use Lunar\Base\Traits\LunarUser;

class User extends Authenticatable
class User extends Authenticatable implements LunarUserContract
{
use HasFactory;
use LunarUser;
Expand Down

0 comments on commit a33ed8e

Please sign in to comment.