2022-12-05 23:01:12 +08:00

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)
{
//
}
}