tethys/app/Providers/EventServiceProvider.php

35 lines
754 B
PHP
Raw Normal View History

<?php
namespace App\Providers;
2015-07-19 13:49:24 +07:00
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\Event::class => [
\App\Listeners\EventListener::class,
2018-08-06 14:30:51 +02:00
],
2019-02-14 15:09:11 +01:00
\App\Events\Dataset\DatasetUpdated::class => [
\App\Listeners\DatasetUpdated::class,
],
2018-08-06 14:30:51 +02:00
];
2015-07-19 13:49:24 +07:00
/**
* Register any other events for your application.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
* @return void
*/
public function boot()
{
parent::boot();
2015-07-19 13:49:24 +07:00
//
}
2015-07-19 13:49:24 +07:00
}