21 lines
465 B
Plaintext
Raw Normal View History

2020-04-03 14:36:32 +03:00
<?php
namespace $MODULE_NAMESPACE$\$STUDLY_NAME$\Providers;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as Provider;
2020-05-24 09:42:32 +03:00
use $MODULE_NAMESPACE$\$STUDLY_NAME$\Listeners\FinishInstallation;
2020-04-03 14:36:32 +03:00
class Event extends Provider
{
/**
* The event listener mappings for the module.
*
* @var array
*/
protected $listen = [
\App\Events\Module\Installed::class => [
2020-05-24 09:42:32 +03:00
FinishInstallation::class,
2020-04-03 14:36:32 +03:00
],
];
}