PHP Classes

File: apps/ApiGateway/app/Providers/EventServiceProvider.php

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Hotel Booking Available   apps/ApiGateway/app/Providers/EventServiceProvider.php   Download  
File: apps/ApiGateway/app/Providers/EventServiceProvider.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Hotel Booking Available
Search for hotels that are available for booking
Author: By
Last change:
Date: 2 years ago
Size: 395 bytes
 

Contents

Class file image Download
<?php

namespace App\Providers;

use
Laravel\Lumen\Providers\EventServiceProvider as ServiceProvider;

class
EventServiceProvider extends ServiceProvider
{
   
/**
     * The event listener mappings for the application.
     *
     * @var array
     */
   
protected $listen = [
        \
App\Events\ExampleEvent::class => [
            \
App\Listeners\ExampleListener::class,
        ],
    ];
}