File "EventServiceProvider.php"

Full Path: /home/bettaeza/flyinsyria.com/Booking/EventServiceProvider.php
File size: 391 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Modules\Booking;

use Modules\Booking\Events\EnquiryReplyCreated;
use Modules\Booking\Listeners\SendEnquiryReplyNotification;

class EventServiceProvider extends \Illuminate\Foundation\Support\Providers\EventServiceProvider
{
    protected $listen = [
        EnquiryReplyCreated::class=>[
            SendEnquiryReplyNotification::class
        ]
    ];

}