PersonalSettings::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * @author Christoph Wurst <[email protected]>
7
 *
8
 * Nextcloud - Two-factor Gateway
9
 *
10
 * This code is free software: you can redistribute it and/or modify
11
 * it under the terms of the GNU Affero General Public License, version 3,
12
 * as published by the Free Software Foundation.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
 * GNU Affero General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU Affero General Public License, version 3,
20
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
21
 *
22
 */
23
24
namespace OCA\TwoFactorGateway\Settings;
25
26
use OCP\Authentication\TwoFactorAuth\IPersonalProviderSettings;
27
use OCP\Template;
28
29
class PersonalSettings implements IPersonalProviderSettings {
30
31
	/** @var string */
32
	private $gateway;
33
34
	public function __construct(string $gateway) {
35
		$this->gateway = $gateway;
36
	}
37
38
	/**
39
	 * @return Template
40
	 *
41
	 * @since 15.0.0
42
	 */
43
	public function getBody(): Template {
44
		$tmpl = new Template('twofactor_gateway', 'personal_settings');
45
		$tmpl->assign('gateway', $this->gateway);
46
		return $tmpl;
47
	}
48
}
49