1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Providers/EventServiceProvider.php
2015-04-13 15:00:31 +03:00

48 lines
1.2 KiB
PHP

<?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 = [
'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',
],
];
/**
* Register any other events for your application.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
* @return void
*/
public function boot(DispatcherContract $events)
{
parent::boot($events);
//
}
}