Namespace events

This commit is contained in:
Joseph Cohen
2015-08-15 15:10:31 -05:00
committed by James Brooks
parent 924eee9752
commit a93472f544
14 changed files with 18 additions and 18 deletions
+5 -5
View File
@@ -21,14 +21,14 @@ class EventServiceProvider extends ServiceProvider
* @var array
*/
protected $listen = [
'CachetHQ\Cachet\Events\SubscriberHasSubscribedEvent' => [
'CachetHQ\Cachet\Events\Subscriber\SubscriberHasSubscribedEvent' => [
'CachetHQ\Cachet\Handlers\Events\SendSubscriberVerificationEmailHandler',
],
'CachetHQ\Cachet\Events\IncidentHasReportedEvent' => [
'CachetHQ\Cachet\Handlers\Events\SendIncidentEmailNotificationHandler',
'CachetHQ\Cachet\Events\Incident\IncidentHasReportedEvent' => [
'CachetHQ\Cachet\Handlers\Events\Incident\SendIncidentEmailNotificationHandler',
],
'CachetHQ\Cachet\Events\MaintenanceHasScheduledEvent' => [
'CachetHQ\Cachet\Handlers\Events\SendMaintenanceEmailNotificationHandler',
'CachetHQ\Cachet\Events\Incident\MaintenanceHasScheduledEvent' => [
'CachetHQ\Cachet\Handlers\Events\Incident\SendMaintenanceEmailNotificationHandler',
],
];
}