EventServiceProvider   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 3
dl 0
loc 23
rs 10
c 1
b 0
f 1
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A register() 0 2 1
A boot() 0 3 1
1
<?php
2
3
namespace FaithGen\Messages\Providers;
4
5
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
6
7
class EventServiceProvider extends ServiceProvider
8
{
9
    protected $listen = [
10
11
    ];
12
13
    /**
14
     * Bootstrap services.
15
     *
16
     * @return void
17
     */
18
    public function boot()
19
    {
20
        parent::boot();
21
    }
22
23
    /**
24
     * Register services.
25
     *
26
     * @return void
27
     */
28
    public function register()
29
    {
30
        //
31
    }
32
}
33