Completed
Push — master ( ce8e3e...3f6dd6 )
by Mahmoud
08:54 queued 05:37
created

MainEventsServiceProvider   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 26
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A boot() 0 6 1
1
<?php
2
3
namespace App\Port\Event\Providers;
4
5
use Illuminate\Foundation\Support\Providers\EventServiceProvider as LaravelServiceProvider;
6
7
/**
8
 * Class MainEventsServiceProvider
9
 *
10
 * A.K.A app/Providers/EventsServiceProvider.php
11
 *
12
 * @author  Mahmoud Zalt  <[email protected]>
13
 */
14
class MainEventsServiceProvider extends LaravelServiceProvider
15
{
16
17
    /**
18
     * The event listener mappings for the application.
19
     *
20
     * @var array
21
     */
22
    protected $listen = [
23
        //
24
    ];
25
26
27
    /**
28
     * Register any other events for your application.
29
     *
30
     * @return void
31
     */
32
    public function boot()
33
    {
34
        parent::boot();
35
36
        //
37
    }
38
39
}
40