Completed
Push — master ( 8697c1...9d10f5 )
by Sherif
03:36
created

CoreConfig   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getConfig() 0 13 1
1
<?php namespace App\Modules\Core\Utl;
2
3
class CoreConfig
4
{
5
    public function getConfig()
6
    {
7
        return [
8
			/**
9
			 * Specify what relations should be used for every model.
10
			 */
11
			'relations' => config('skeleton.relations'),
12
			/**
13
			 * Specify caching config for each api.
14
			 */
15
			'cacheConfig' =>  config('skeleton.cache_config'),
16
		];
17
    }
18
}