for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Tinyissue package.
*
* (c) Mohamed Alsharaf <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Tinyissue\Providers;
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
/**
* EventServiceProvider is the events service provider for bootstrapping and registering the application event listeners.
* @author Mohamed Alsharaf <[email protected]>
class EventServiceProvider extends ServiceProvider
{
* The event handler mappings for the application.
* @var array
protected $listen = [
'event.name' => [
'EventListener',
],
];
* Register any other events for your application.
* @param \Illuminate\Contracts\Events\Dispatcher $events
public function boot(DispatcherContract $events)
parent::boot($events);
}