ComposerServiceProvider   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 22
rs 10
c 0
b 0
f 0
ccs 4
cts 4
cp 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A boot() 0 4 1
A register() 0 4 1
1
<?php namespace Arcanesoft\Pages\Providers;
2
3
use Arcanedev\Support\ServiceProvider;
4
5
/**
6
 * Class     ComposerServiceProvider
7
 *
8
 * @package  Arcanesoft\Pages\Providers
9
 * @author   ARCANEDEV <[email protected]>
10
 */
11
class ComposerServiceProvider extends ServiceProvider
12
{
13
    /* ------------------------------------------------------------------------------------------------
14
     |  Main Functions
15
     | ------------------------------------------------------------------------------------------------
16
     */
17
    /**
18
     * {@inheritdoc}
19
     */
20 6
    public function boot()
21
    {
22
        //
23 6
    }
24
25
    /**
26
     * {@inheritdoc}
27
     */
28 6
    public function register()
29
    {
30
        //
31 6
    }
32
}
33