First release
This commit is contained in:
21
src/Events/CredentialDisabled.php
Normal file
21
src/Events/CredentialDisabled.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Laragear\WebAuthn\Events;
|
||||
|
||||
use Illuminate\Foundation\Events\Dispatchable;
|
||||
use Laragear\WebAuthn\Models\WebAuthnCredential;
|
||||
|
||||
class CredentialDisabled
|
||||
{
|
||||
use Dispatchable;
|
||||
|
||||
/**
|
||||
* Create a new event instance.
|
||||
*
|
||||
* @param \Laragear\WebAuthn\Models\WebAuthnCredential $credential
|
||||
*/
|
||||
public function __construct(public WebAuthnCredential $credential)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user