Completed
Branch 0.2.1 (e70612)
by Anton
09:15
created

Recover   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\Auth {
4
5
	use Frames, Modules, Language;
6
7
	class Recover extends Frames\Admin\Component\Auth {
8
9
		# Handle request
10
11
		protected function handle() {
12
13
			$this->title = Language::get('TITLE_AUTH_RECOVER');
14
15
			return (new Modules\Auth\Handler\Recover())->handle();
16
		}
17
	}
18
}
19