%PDF- %PDF-
Direktori : /var/www/html/kpk/api/vendor/arcanedev/support/src/Providers/ |
Current File : /var/www/html/kpk/api/vendor/arcanedev/support/src/Providers/EventServiceProvider.php |
<?php namespace Arcanedev\Support\Providers; use Illuminate\Support\Facades\Event; use Illuminate\Support\ServiceProvider; /** * Class EventServiceProvider * * @package Arcanedev\Support\Laravel\Providers * @author ARCANEDEV <arcanedev.maroc@gmail.com> */ abstract class EventServiceProvider extends ServiceProvider { /* ------------------------------------------------------------------------------------------------ | Properties | ------------------------------------------------------------------------------------------------ */ /** * The event handler mappings for the application. * * @var array */ protected $listen = []; /** * The subscriber classes to register. * * @var array */ protected $subscribe = []; /* ------------------------------------------------------------------------------------------------ | Getters & Setters | ------------------------------------------------------------------------------------------------ */ /** * Get the events and handlers. * * @return array */ public function listens() { return $this->listen; } /* ------------------------------------------------------------------------------------------------ | Main Functions | ------------------------------------------------------------------------------------------------ */ /** * Register the application's event listeners. */ public function boot() { foreach ($this->listens() as $event => $listeners) { foreach ($listeners as $listener) { Event::listen($event, $listener); } } foreach ($this->subscribe as $subscriber) { Event::subscribe($subscriber); } } /** * {@inheritdoc} */ public function register() { // } }