Passed
Push — master ( 2ddbf5...80a11e )
by Georgi
07:18
created

SystemCore::install()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
3
namespace Epesi\Core\System;
4
5
class SystemCore extends Integration\Modules\ModuleCore
6
{
7
	protected static $alias = 'system';
8
	
9
	protected static $view = SystemSettings::class;
10
	
11
	protected static $joints = [
12
			Integration\SystemSettingsUserMenu::class,
13
			Integration\ModuleAdministrationSystemSettings::class
14
	];
15
	
16
	protected static $requires = [
17
			\Epesi\Core\Layout\LayoutCore::class,
18
			User\UserCore::class,
19
	];
20
	
21
	protected static $recommends = [
22
			'dashboard'
23
	];
24
}
25