EventServiceProvider.php 435 Bytes
Newer Older
Nicolas Widart's avatar
Nicolas Widart committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?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',
		],
	];

Nicolas Widart's avatar
Nicolas Widart committed
18 19 20 21 22 23 24 25 26
	/**
	 * The classes to scan for event annotations.
	 *
	 * @var array
	 */
	protected $scan = [
		//
	];

Nicolas Widart's avatar
Nicolas Widart committed
27
}