athenahr/app/Listeners/NewUser.php

28 lines
342 B
PHP

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