Passed
Push — master ( 5c9089...a37889 )
by Georgi
05:25
created

CommonDataCore   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 10
c 1
b 0
f 0
dl 0
loc 17
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A info() 0 7 1
1
<?php
2
3
namespace Epesi\Base\CommonData;
4
5
use Epesi\Core\System\Integration\Modules\ModuleCore;
6
7
class CommonDataCore extends ModuleCore
8
{
9
	protected static $alias = 'commondata';
10
	
11
	protected static $view = CommonDataSettings::class;
12
	
13
	protected static $joints = [
14
			Integration\CommonDataSystemSettings::class,
15
	];
16
	
17
	public static function info()
18
	{
19
		return [
20
				__('Author') => 'Georgi Hristov',
21
				__('Copyright') => 'X Systems Ltd',
22
				'',
23
				'Provides commondata lists functionality'
24
		];
25
	}
26
}
27