Cachet/app/Providers/EventServiceProvider.php

29 lines
593 B
PHP
Raw Normal View History

2015-03-21 02:33:38 -06:00
<?php
/*
* This file is part of Cachet.
*
2015-05-25 17:59:08 +01:00
* (c) Cachet HQ <support@cachethq.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2015-03-21 02:33:38 -06:00
namespace CachetHQ\Cachet\Providers;
2015-03-20 18:30:45 -06:00
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',
],
];
}