clara/stubs/nwidart-stubs/listener-duck.stub

31 lines
426 B
Plaintext
Raw Normal View History

2023-05-10 15:15:50 +00:00
<?php
namespace $NAMESPACE$;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
class $CLASS$
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param object $event
* @return void
*/
public function handle($event)
{
//
}
}