mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-01-07 15:00:17 +01:00
26 lines
543 B
PHP
26 lines
543 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
use App\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\TwoFAccount $twofaccount
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct(TwoFAccount $twofaccount)
|
||
|
{
|
||
|
$this->twofaccount = $twofaccount;
|
||
|
}
|
||
|
}
|