ServiceProvider
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 6
Bugs 0 Features 0
Metric Value
c 6
b 0
f 0
dl 0
loc 13
wmc 0
lcom 0
cbo 1
1
<?php
2
3
namespace LaravelPlus\Extension;
4
5
use Illuminate\Support\AggregateServiceProvider;
6
use Illuminate\Foundation\Providers\ComposerServiceProvider;
7
8
class ServiceProvider extends AggregateServiceProvider
9
{
10
    /**
11
     * The provider class names.
12
     *
13
     * @var array
14
     */
15
    protected $providers = [
16
        Providers\ArtisanServiceProvider::class,
17
        ComposerServiceProvider::class,
18
        Providers\ExtensionServiceProvider::class,
19
    ];
20
}
21