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

26 lines
348 B
Plaintext
Raw Normal View History

2024-08-27 12:03:06 +00:00
<?php
namespace $NAMESPACE$;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
class $CLASS$
{
/**
* Create the event listener.
*/
public function __construct()
{
//
}
/**
* Handle the event.
*/
public function handle($event): void
{
//
}
}