ConfigPublicController   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A get() 0 2 1
1
<?php
2
/**
3
 * Nextcloud - Gallery
4
 *
5
 * This file is licensed under the Affero General Public License version 3 or
6
 * later. See the COPYING file.
7
 *
8
 * @author Olivier Paroz <[email protected]>
9
 *
10
 * @copyright Olivier Paroz 2017
11
 */
12
13
namespace OCA\Gallery\Controller;
14
15
/**
16
 * Class ConfigPublicController
17
 *
18
 * Note: Type casting only works if the "@param" parameters are also included in this class as
19
 * their not yet inherited
20
 *
21
 * @package OCA\Gallery\Controller
22
 */
23
class ConfigPublicController extends ConfigController {
24
25
	/**
26
	 * @PublicPage
27
	 *
28
	 * Returns a list of supported features
29
	 *
30
	 * @inheritDoc
31
	 *
32
	 * @param bool $extramediatypes
33
	 */
34
	public function get($extramediatypes = false) {
35
		return parent::get($extramediatypes);
36
	}
37
38
}
39