Completed
Branch master (a6481d)
by Fèvre
02:09
created

EventServiceProvider::boot()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
namespace Xetaravel\Providers;
3
4
use Illuminate\Support\Facades\Event;
5
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
6
7
class EventServiceProvider extends ServiceProvider
8
{
9
    /**
10
     * The event listener mappings for the application.
11
     *
12
     * @var array
13
     */
14
    protected $listen = [
15
        'Xetaravel\Events\Event' => [
16
            'Xetaravel\Listeners\EventListener',
17
        ],
18
    ];
19
20
    /**
21
     * Register any events for your application.
22
     *
23
     * @return void
24
     */
25
    public function boot()
26
    {
27
        parent::boot();
28
29
        //
30
    }
31
}
32