Akaunting/app/Providers/EventServiceProvider.php

41 lines
898 B
PHP
Raw Normal View History

2017-09-14 19:21:00 +00:00
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Event;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
2017-10-02 13:26:45 +00:00
'App\Events\UpdateFinished' => [
2017-10-21 11:23:57 +00:00
'App\Listeners\Updates\Version106',
'App\Listeners\Updates\Version107',
2017-10-31 19:41:06 +00:00
'App\Listeners\Updates\Version108',
2017-09-14 19:21:00 +00:00
],
'Illuminate\Auth\Events\Login' => [
'App\Listeners\Auth\Login',
],
'Illuminate\Auth\Events\Logout' => [
'App\Listeners\Auth\Logout',
],
];
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
parent::boot();
//
}
}