28 lines
435 B
PHP
28 lines
435 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 = [
|
|
'event.name' => [
|
|
'EventListener',
|
|
],
|
|
];
|
|
|
|
/**
|
|
* The classes to scan for event annotations.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $scan = [
|
|
//
|
|
];
|
|
|
|
}
|