Completed
Push — master ( ca7218...314785 )
by Gaige
01:03
created

VasriServiceProvider   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A boot() 0 8 1
1
<?php
2
3
4
namespace ExoUNX\Vasri;
5
6
use Illuminate\Support\ServiceProvider;
7
8
/**
9
 * Service Provider for Laravel
10
 * Class VasriServiceProvider
11
 *
12
 * @package ExoUNX\Vasri
13
 * @author  Gaige Lama <[email protected]>
14
 * @license MIT License
15
 * @link    https://github.com/ExoUNX/Vasri
16
 */
17
class VasriServiceProvider extends ServiceProvider
18
{
19
20
    /**
21
     * Perform post-registration booting of services.
22
     *
23
     * @return void
24
     */
25
    public function boot(): void
26
    {
27
        $this->publishes(
28
            [
29
                __DIR__.'/../config/vasri.php' => config_path('vasri.php'),
30
            ]
31
        );
32
    }
33
34
}
35