Passed
Push — master ( c435da...16d52a )
by Mark van den
04:19
created

DhlParcelServiceProvider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
eloc 2
dl 0
loc 20
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A boot() 0 2 1
A register() 0 3 1
1
<?php
2
3
namespace Mvdnbrk\DhlParcel;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class DhlParcelServiceProvider extends ServiceProvider
8
{
9
    /**
10
     * Bootstrap the application services.
11
     *
12
     * @return void
13
     */
14 4
    public function boot()
15
    {
16
        //
17 4
    }
18
19
    /**
20
     * Register the application services.
21
     *
22
     * @return void
23
     */
24 4
    public function register()
25
    {
26 4
        $this->mergeConfigFrom(__DIR__.'/../config/dhlparcel.php', 'dhlparcel');
27 4
    }
28
}
29