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

CoreConfig::getConfig()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

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