EventServiceProvider   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 35
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A boot() 0 6 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