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

Reset::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 6
rs 9.4286
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace Handlers\Site\Profile\Auth {
4
5
	use Frames, Modules, Language;
6
7
	class Reset extends Frames\Site\Component\Profile\Auth {
8
9
		# Handle request
10
11
		protected function handle() {
12
13
			$this->title = Language::get('TITLE_PROFILE_AUTH_RESET');
14
15
			return (new Modules\Auth\Handler\Reset())->handle();
16
		}
17
	}
18
}
19