ResponderServiceProvider::boot()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 9.9332
c 0
b 0
f 0
cc 1
nc 1
nop 0
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