Completed
Push — master ( c7d5ad...0208a8 )
by Sherif
02:59
created

SettingRepository   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
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 12
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getModel() 0 4 1
1
<?php namespace App\Modules\Core\Repositories\V1;
2
3
use App\Modules\Core\AbstractRepositories\AbstractRepository;
4
5
class SettingRepository extends AbstractRepository
6
{
7
	/**
8
	 * Return the model full namespace.
9
	 * 
10
	 * @return string
11
	 */
12
	protected function getModel()
13
	{
14
		return 'App\Modules\Core\Settings';
15
	}
16
}
17