EventServiceProvider::boot()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 6
ccs 3
cts 3
cp 1
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
3
namespace plunner\Providers;
4
5
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
6
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
7
8
class EventServiceProvider extends ServiceProvider
9
{
10
    /**
11
     * The event listener mappings for the application.
12
     *
13
     * @var array
14
     */
15
    protected $listen = [
16
        'plunner\Events\Caldav\ErrorEvent' => [
17
            'plunner\Listeners\Caldav\ErrorListener',
18
        ],
19
        'plunner\Events\Caldav\OkEvent' => [
20
            'plunner\Listeners\Caldav\OkListener',
21
        ],
22
        'plunner\Events\Optimise\ErrorEvent' => [
23
            'plunner\Listeners\Optimise\ErrorListener',
24
        ],
25
        'plunner\Events\Optimise\OkEvent' => [
26
            'plunner\Listeners\Optimise\OkListener',
27
        ],
28
    ];
29
30
    /**
31
     * Register any other events for your application.
32
     *
33
     * @param  \Illuminate\Contracts\Events\Dispatcher $events
34
     * @return void
35
     */
36 354
    public function boot(DispatcherContract $events)
37
    {
38 354
        parent::boot($events);
39
40
        //
41 354
    }
42
}
43