Passed
Push — master ( 992e52...dc2c5c )
by Georgi
03:52
created

OnlineCore   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 5
c 1
b 0
f 0
dl 0
loc 16
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\System\User\Online;
4
5
use Epesi\Core\System\Integration\Modules\ModuleCore;
6
use Epesi\Core\System\User\Online\Integration\UsersOnlineApplet;
7
use Epesi\Base\Dashboard\Integration\UsersOnlineUserSettings;
8
9
class OnlineCore extends ModuleCore
10
{
11
	protected static $alias = 'users.online';
12
	
13
	protected static $joints = [
14
			UsersOnlineApplet::class,
15
			UsersOnlineUserSettings::class,
16
	];
17
	
18
	public function install()
19
	{
20
		
21
	}
22
23
	public function uninstall()
24
	{
25
		
26
	}
27
}
28