Files
faveo/app/Providers/EventServiceProvider.php
2023-01-07 20:33:06 +00:00

32 lines
612 B
PHP

<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event handler mappings for the application.
*
* @var array
*/
protected $listen = [
'App\Events\WorkFlowEvent' => [
'App\Listeners\WorkFlowListen',
],
];
/**
* Register any other events for your application.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
* @return void
*/
public function boot()
{
//
}
}