Completed
Push — master ( 4eb77d...f30482 )
by ARCANEDEV
09:06 queued 13s
created

ModuleServiceProvider   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 36
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Test Coverage

Coverage 71.43%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
c 1
b 0
f 0
lcom 1
cbo 2
dl 0
loc 36
ccs 5
cts 7
cp 0.7143
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A register() 0 4 1
A boot() 0 4 1
A provides() 0 6 1
1
<?php namespace Arcanesoft\Foundation\Providers;
2
3
use Arcanedev\Support\ServiceProvider;
4
5
/**
6
 * Class     ModuleServiceProvider
7
 *
8
 * @package  Arcanesoft\Foundation\Providers
9
 * @author   ARCANEDEV <[email protected]>
10
 */
11
class ModuleServiceProvider extends ServiceProvider
12
{
13
    /* ------------------------------------------------------------------------------------------------
14
     |  Main Functions
15
     | ------------------------------------------------------------------------------------------------
16
     */
17
    /**
18
     * Register the service provider.
19
     *
20
     * @return void
21
     */
22 12
    public function register()
23
    {
24 12
        $this->app->register(\Arcanesoft\Auth\AuthServiceProvider::class);
25 12
    }
26
27
    /**
28
     * Boot the service provider.
29
     */
30 12
    public function boot()
31
    {
32
        //
33 12
    }
34
35
    /**
36
     * Get the services provided by the provider.
37
     *
38
     * @return array
39
     */
40
    public function provides()
41
    {
42
        return [
43
            //
44
        ];
45
    }
46
}
47