| Current Path : /home/bullgymbny/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/ |
| Current File : /home/bullgymbny/app/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/listener.stub |
<?php
namespace {{ namespace }};
use {{ eventNamespace }};
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
class {{ class }}
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param \{{ eventNamespace }} $event
* @return void
*/
public function handle({{ event }} $event)
{
//
}
}