28 lines
339 B
PHP
28 lines
339 B
PHP
<?php
|
|
|
|
namespace App\Listeners;
|
|
|
|
class test
|
|
{
|
|
/**
|
|
* Create the event listener.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the event.
|
|
*
|
|
* @param object $event
|
|
* @return void
|
|
*/
|
|
public function handle($event)
|
|
{
|
|
//
|
|
}
|
|
}
|