PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
packages
/
seo-helper
/
src
/
Providers
<?php namespace Botble\SeoHelper\Providers; use Botble\Base\Events\CreatedContentEvent; use Botble\Base\Events\DeletedContentEvent; use Botble\Base\Events\UpdatedContentEvent; use Botble\SeoHelper\Listeners\CreatedContentListener; use Botble\SeoHelper\Listeners\DeletedContentListener; use Botble\SeoHelper\Listeners\UpdatedContentListener; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; class EventServiceProvider extends ServiceProvider { /** * The event listener mappings for the application. * * @var array */ protected $listen = [ UpdatedContentEvent::class => [ UpdatedContentListener::class, ], CreatedContentEvent::class => [ CreatedContentListener::class, ], DeletedContentEvent::class => [ DeletedContentListener::class, ], ]; }
[-] SeoHelperServiceProvider.php
[edit]
[+]
..
[-] HookServiceProvider.php
[edit]
[-] EventServiceProvider.php
[edit]