Completed
Pull Request — master (#91)
by Mahmoud
05:39
created

MainEventsServiceProvider::boot()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 2
nc 1
nop 0
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