Completed
Push — master ( f4ab91...b02197 )
by Mahmoud
03:34
created

MainServiceProvider::boot()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace App\Containers\Authorization\Providers;
4
5
use App\Ship\Parents\Providers\MainProvider;
6
7
use Spatie\Permission\PermissionServiceProvider;
8
9
/**
10
 * Class MainServiceProvider.
11
 *
12
 * The Main Service Provider of this container, it will be automatically registered in the framework.
13
 *
14
 * @author  Mahmoud Zalt <[email protected]>
15
 */
16
class MainServiceProvider extends MainProvider
17
{
18
19
    /**
20
     * Container Service Providers.
21
     *
22
     * @var array
23
     */
24
    public $serviceProviders = [
25
        PermissionServiceProvider::class,
26
        MiddlewareServiceProvider::class
27
    ];
28
29
    /**
30
     * Container Aliases
31
     *
32
     * @var  array
33
     */
34
    public $aliases = [
35
36
    ];
37
38
}
39