21 lines
465 B
Plaintext
21 lines
465 B
Plaintext
<?php
|
|
|
|
namespace $MODULE_NAMESPACE$\$STUDLY_NAME$\Providers;
|
|
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as Provider;
|
|
use $MODULE_NAMESPACE$\$STUDLY_NAME$\Listeners\FinishInstallation;
|
|
|
|
class Event extends Provider
|
|
{
|
|
/**
|
|
* The event listener mappings for the module.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $listen = [
|
|
\App\Events\Module\Installed::class => [
|
|
FinishInstallation::class,
|
|
],
|
|
];
|
|
}
|