snipe-it/app/Providers/EventServiceProvider.php

39 lines
744 B
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
namespace App\Providers;
2016-12-14 04:32:24 -08:00
use Illuminate\Support\Facades\Event;
2016-03-25 01:18:05 -07:00
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
2018-07-16 23:49:08 -07:00
'Illuminate\Auth\Events\Login' => [
'App\Listeners\LogSuccessfulLogin',
],
'Illuminate\Auth\Events\Failed' => [
'App\Listeners\LogFailedLogin',
],
];
2016-03-25 01:18:05 -07:00
/**
2016-12-14 04:32:24 -08:00
* Register any events for your application.
2016-03-25 01:18:05 -07:00
*
* @return void
*/
2016-12-14 04:32:24 -08:00
public function boot()
2016-03-25 01:18:05 -07:00
{
2016-12-14 04:32:24 -08:00
parent::boot();
2016-03-25 01:18:05 -07:00
//
}
}