1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 21:52:35 +01:00
invoiceninja/app/Providers/EventServiceProvider.php

48 lines
1.2 KiB
PHP
Raw Normal View History

2015-03-12 01:44:39 +01:00
<?php namespace App\Providers;
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider {
/**
* The event handler mappings for the application.
*
* @var array
*/
protected $listen = [
2015-03-31 19:42:37 +02:00
'App\Events\UserLoggedIn' => [
'App\Listeners\HandleUserLoggedIn',
],
'App\Events\UserSettingsChanged' => [
'App\Listeners\HandleUserSettingsChanged',
],
'App\Events\InvoiceSent' => [
'App\Listeners\HandleInvoiceSent',
],
'App\Events\InvoiceViewed' => [
'App\Listeners\HandleInvoiceViewed',
],
'App\Events\InvoicePaid' => [
'App\Listeners\HandleInvoicePaid',
],
'App\Events\QuoteApproved' => [
'App\Listeners\HandleQuoteApproved',
],
2015-03-12 01:44:39 +01:00
];
/**
* Register any other events for your application.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
* @return void
*/
public function boot(DispatcherContract $events)
{
parent::boot($events);
//
}
}