20 lines
467 B
PHP
20 lines
467 B
PHP
<?php
|
|
|
|
namespace Tests\Stubs;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Foundation\Auth\User;
|
|
use Laragear\WebAuthn\Contracts\WebAuthnAuthenticatable;
|
|
use Laragear\WebAuthn\WebAuthnAuthentication;
|
|
|
|
/**
|
|
* @method static static forceCreate(array $attributes = [])
|
|
*/
|
|
class WebAuthnAuthenticatableUser extends User implements WebAuthnAuthenticatable
|
|
{
|
|
use HasFactory;
|
|
use WebAuthnAuthentication;
|
|
|
|
protected $table = 'users';
|
|
}
|