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