LayoutCore   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A uninstall() 0 2 1
A install() 0 2 1
1
<?php
2
3
namespace Epesi\Core\Layout;
4
5
use Epesi\Core\System\Modules\ModuleCore;
6
use Epesi\Core\HomePage\HomePageCore;
7
8
class LayoutCore extends ModuleCore
9
{
10
	protected static $alias = 'layout';
11
	
12
	protected static $requires = [
13
			HomePageCore::class
14
	];
15
	
16
	public function install()
17
	{
18
		
19
	}
20
	
21
	public function uninstall()
22
	{
23
		
24
	}
25
}
26