mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 06:30:49 +00:00
32 lines
499 B
PHP
32 lines
499 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Listeners;
|
||
|
|
|
||
|
|
use Illuminate\Auth\Events\Registered;
|
||
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||
|
|
use Illuminate\Queue\InteractsWithQueue;
|
||
|
|
|
||
|
|
class SendDatabaseNotification
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Create the event listener.
|
||
|
|
*
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
//
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Handle the event.
|
||
|
|
*
|
||
|
|
* @param Registered $event
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function handle(Registered $event)
|
||
|
|
{
|
||
|
|
//
|
||
|
|
}
|
||
|
|
}
|