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

ConfigPublicController::get()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 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