32 lines
484 B
PHP
32 lines
484 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Listeners;
|
||
|
|
||
|
use App\Events\ExampleEvent;
|
||
|
use Illuminate\Queue\InteractsWithQueue;
|
||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||
|
|
||
|
class ExampleListener
|
||
|
{
|
||
|
/**
|
||
|
* Create the event listener.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Handle the event.
|
||
|
*
|
||
|
* @param ExampleEvent $event
|
||
|
* @return void
|
||
|
*/
|
||
|
public function handle(ExampleEvent $event)
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
}
|