RedisHelpersServiceProvider::boot()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 3
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 6
rs 10
1
<?php
2
3
namespace Sfneal\Helpers\Redis\Providers;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class RedisHelpersServiceProvider extends ServiceProvider
8
{
9
    /**
10
     * Bootstrap any RedisCache services.
11
     *
12
     * @return void
13
     */
14
    public function boot()
15
    {
16
        // Publish config file
17
        $this->publishes([
18
            __DIR__.'/../../config/redis-helpers.php' => base_path('config/redis-helpers.php'),
19
        ], 'config');
20
    }
21
22
    /**
23
     * Register any RedisCache services.
24
     *
25
     * @return void
26
     */
27
    public function register()
28
    {
29
        // Load config file
30
        $this->mergeConfigFrom(__DIR__.'/../../config/redis-helpers.php', 'redis-helpers');
31
    }
32
}
33