pare down the vacentral module

This commit is contained in:
Nabeel Shahzad
2017-12-05 21:49:07 -06:00
parent 4035d6b00b
commit 3e85cf775b
16 changed files with 59 additions and 356 deletions

View File

@@ -2,8 +2,9 @@
namespace Modules\Vacentral\Providers;
use App\Events\PirepAccepted;
use App\Events\TestEvent;
use Modules\Vacentral\Listeners\TestEventListener;
use Modules\Vacentral\Listeners\PirepAcceptedEventListener;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
@@ -12,7 +13,7 @@ class EventServiceProvider extends ServiceProvider
* The event listener mappings for the application.
*/
protected $listen = [
TestEvent::class => [TestEventListener::class],
PirepAccepted::class => [PirepAcceptedEventListener::class],
];
/**