Page MenuHomeDevCentral

EventServiceProvider.php
No OneTemporary

EventServiceProvider.php

<?php
namespace Nasqueron\Notifications\Providers;
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
];
/**
* The subscriber classes to register.
*
* @var array
*/
protected $subscribe = [
'Nasqueron\Notifications\Listeners\LastPayloadSaver',
'Nasqueron\Notifications\Listeners\AMQPEventListener',
];
/**
* Register any other events for your application.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
* @return void
*/
public function boot(DispatcherContract $events)
{
parent::boot($events);
//
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, May 5, 17:10 (7 h, 6 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3679513
Default Alt Text
EventServiceProvider.php (907 B)

Event Timeline