Completed
Push — stable9 ( ab68a4...eef0b3 )
by Olivier
10s
created

ConfigPublicController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 16
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A get() 0 3 1
1
<?php
2
/**
3
 * ownCloud - galleryplus
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 2016
11
 */
12
13
namespace OCA\GalleryPlus\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\GalleryPlus\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 9
	public function get($extramediatypes = false) {
35 9
		return parent::get($extramediatypes);
36
	}
37
38
}
39