mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-26 10:15:40 +01:00
26 lines
557 B
PHP
26 lines
557 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\TwoFAccount;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class TwoFAccountDeleted
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public $twofaccount;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param \App\Models\TwoFAccount $twofaccount
|
|
* @return void
|
|
*/
|
|
public function __construct(TwoFAccount $twofaccount)
|
|
{
|
|
$this->twofaccount = $twofaccount;
|
|
}
|
|
} |