Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
ConfigPublicController | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
get | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
<?php | |
/** | |
* Gallery | |
* | |
* This file is licensed under the Affero General Public License version 3 or | |
* later. See the COPYING file. | |
* | |
* @author Olivier Paroz <galleryapps@oparoz.com> | |
* | |
* @copyright Olivier Paroz 2016 | |
*/ | |
namespace OCA\Gallery\Controller; | |
/** | |
* Class ConfigPublicController | |
* | |
* Note: Type casting only works if the "@param" parameters are also included in this class as | |
* their not yet inherited | |
* | |
* @package OCA\Gallery\Controller | |
*/ | |
class ConfigPublicController extends ConfigController { | |
/** | |
* @PublicPage | |
* | |
* Returns a list of supported features | |
* | |
* @inheritDoc | |
* | |
* @param bool $extramediatypes | |
*/ | |
public function get($extramediatypes = false) { | |
return parent::get($extramediatypes); | |
} | |
} |