ResponderServiceProvider   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 16
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A boot() 0 10 1
1
<?php
2
3
namespace BrightComponents\Responder;
4
5
use BrightComponents\Responder\Commands\ResponderMakeCommand;
6
use Illuminate\Support\ServiceProvider as BaseServiceProvider;
7
8
class ResponderServiceProvider extends BaseServiceProvider
9
{
10
    /**
11
     * Bootstrap the application services.
12
     */
13
    public function boot()
14
    {
15
        $this->publishes([
16
            __DIR__.'/../config/responders.php' => config_path('responders.php'),
17
        ]);
18
19
        $this->commands([
20
            ResponderMakeCommand::class,
21
        ]);
22
    }
23
}
24