ValorantServiceProvider   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 2
c 0
b 0
f 0
dl 0
loc 9
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A boot() 0 3 1
1
<?php
2
3
namespace Seaony\ValorantApi;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class ValorantServiceProvider extends ServiceProvider
8
{
9
10
    /**
11
     * @return void
12
     */
13
    public function boot()
14
    {
15
        $this->publishes([\dirname(__DIR__).'/config/valorant.php' => config_path('valorant.php')], 'config');
16
    }
17
18
}