Files
webauthn/src/Events/CredentialEnabled.php
2022-06-14 05:17:04 -04:00

22 lines
418 B
PHP

<?php
namespace Laragear\WebAuthn\Events;
use Illuminate\Foundation\Events\Dispatchable;
use Laragear\WebAuthn\Models\WebAuthnCredential;
class CredentialEnabled
{
use Dispatchable;
/**
* Create a new event instance.
*
* @param \Laragear\WebAuthn\Models\WebAuthnCredential $credential
*/
public function __construct(public WebAuthnCredential $credential)
{
//
}
}