Files
webauthn/tests/Stubs/WebAuthnAuthenticatableUser.php
2022-06-14 05:17:04 -04:00

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';
}