ConfigServiceProvider   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 19
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A register() 0 6 1
1
<?php namespace App\Providers;
2
3
use Illuminate\Support\ServiceProvider;
4
5
class ConfigServiceProvider extends ServiceProvider {
6
7
	/**
8
	 * Overwrite any vendor / package configuration.
9
	 *
10
	 * This service provider is intended to provide a convenient location for you
11
	 * to overwrite any "vendor" or package configuration that you may want to
12
	 * modify before the application handles the incoming request / command.
13
	 *
14
	 * @return void
15
	 */
16
	public function register()
17
	{
18
		config([
19
			//
20
		]);
21
	}
22
23
}
24