EventServiceProvider   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 40
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 40
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 namespace Arcanedev\LaravelTracker\Providers;
2
3
use Arcanedev\Support\Providers\EventServiceProvider as ServiceProvider;
4
5
/**
6
 * Class     EventServiceProvider
7
 *
8
 * @package  Arcanedev\LaravelTracker\Providers
9
 * @author   ARCANEDEV <[email protected]>
10
 */
11
class EventServiceProvider extends ServiceProvider
12
{
13
    /* -----------------------------------------------------------------
14
     |  Properties
15
     | -----------------------------------------------------------------
16
     */
17
18
    /**
19
     * The event listener mappings for the application.
20
     *
21
     * @var array
22
     */
23
    protected $listen = [
24
        //
25
    ];
26
27
    /**
28
     * The subscriber classes to register.
29
     *
30
     * @var array
31
     */
32
    protected $subscribe = [
33
        \Arcanedev\LaravelTracker\EventListeners\RouteEventSubscriber::class,
34
    ];
35
36
    /* -----------------------------------------------------------------
37
     |  Main Methods
38
     | -----------------------------------------------------------------
39
     */
40
41
    /**
42
     * Register the application's event listeners.
43
     */
44 117
    public function boot()
45
    {
46 117
        parent::boot();
47
48
        //
49 117
    }
50
}
51