Completed
Push — master ( a4425c...d73c00 )
by Anılcan
06:25
created

FormerServiceProvider::configure()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
c 0
b 0
f 0
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace AnilcanCakir\Former;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class FormerServiceProvider extends ServiceProvider
8
{
9
    /**
10
     * Register the service provider.
11
     *
12
     * @return void
13
     */
14
    public function register()
15
    {
16
        $this->configure();
17
    }
18
19
    /**
20
     * Setup the configuration for Former.
21
     *
22
     * @return void
23
     */
24
    protected function configure()
25
    {
26
        $this->mergeConfigFrom(
27
            __DIR__.'/../config/former.php', 'former'
28
        );
29
    }
30
}
31