Completed
Push — master ( 416cb1...222de5 )
by Anton
03:44
created

Information   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3
Metric Value
wmc 1
lcom 1
cbo 3
dl 0
loc 11
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 6 1
1
<?php
2
3
namespace Handlers\Admin\System {
4
5
	use Frames, Modules, Language;
6
7
	class Information extends Frames\Admin\Component\Panel {
8
9
		# Handle request
10
11
		protected function handle() {
12
13
			$this->title = Language::get('TITLE_SYSTEM_INFORMATION');
14
15
			return (new Modules\Informer\Handler\Information())->handle();
16
		}
17
	}
18
}
19