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\Stripe\Providers;
4
5
use App\Ship\Parents\Providers\MainProvider;
6
use Cartalyst\Stripe\Laravel\Facades\Stripe;
7
use Cartalyst\Stripe\Laravel\StripeServiceProvider;
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
        StripeServiceProvider::class,
26
    ];
27
28
    /**
29
     * Container Aliases
30
     *
31
     * @var  array
32
     */
33
    public $aliases = [
34
        'Stripe' => Stripe::class,
35
    ];
36
37
}
38