@@ -410,6 +410,9 @@ discard block |
||
| 410 | 410 | } |
| 411 | 411 | } |
| 412 | 412 | |
| 413 | + /** |
|
| 414 | + * @param string $path |
|
| 415 | + */ |
|
| 413 | 416 | private function getParentPath($path) { |
| 414 | 417 | $parent = dirname($path); |
| 415 | 418 | if ($parent === '.') { |
@@ -629,7 +632,7 @@ discard block |
||
| 629 | 632 | * |
| 630 | 633 | * @param string $mimetype either a full mimetype to search ('text/plain') or only the first part of a mimetype ('image') |
| 631 | 634 | * where it will search for all mimetypes in the group ('image/*') |
| 632 | - * @return ICacheEntry[] an array of cache entries where the mimetype matches the search |
|
| 635 | + * @return CacheEntry[] an array of cache entries where the mimetype matches the search |
|
| 633 | 636 | */ |
| 634 | 637 | public function searchByMime($mimetype) { |
| 635 | 638 | if (strpos($mimetype, '/')) { |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | /** |
| 122 | 122 | * List all installed apps |
| 123 | 123 | * |
| 124 | - * @return string[] |
|
| 124 | + * @return integer[] |
|
| 125 | 125 | */ |
| 126 | 126 | public function getInstalledApps() { |
| 127 | 127 | return array_keys($this->getInstalledAppsValues()); |
@@ -382,6 +382,9 @@ discard block |
||
| 382 | 382 | return in_array($appId, $this->shippedApps, true); |
| 383 | 383 | } |
| 384 | 384 | |
| 385 | + /** |
|
| 386 | + * @param string $appId |
|
| 387 | + */ |
|
| 385 | 388 | private function isAlwaysEnabled($appId) { |
| 386 | 389 | $alwaysEnabled = $this->getAlwaysEnabledApps(); |
| 387 | 390 | return in_array($appId, $alwaysEnabled, true); |
@@ -30,6 +30,9 @@ discard block |
||
| 30 | 30 | /** @var JSCombiner */ |
| 31 | 31 | protected $jsCombiner; |
| 32 | 32 | |
| 33 | + /** |
|
| 34 | + * @param string $theme |
|
| 35 | + */ |
|
| 33 | 36 | public function __construct(\OCP\ILogger $logger, $theme, array $core_map, array $party_map, JSCombiner $JSCombiner) { |
| 34 | 37 | parent::__construct($logger, $theme, $core_map, $party_map); |
| 35 | 38 | |
@@ -91,6 +94,9 @@ discard block |
||
| 91 | 94 | public function doFindTheme($script) { |
| 92 | 95 | } |
| 93 | 96 | |
| 97 | + /** |
|
| 98 | + * @param string $file |
|
| 99 | + */ |
|
| 94 | 100 | protected function cacheAndAppendCombineJsonIfExist($root, $file, $app = 'core') { |
| 95 | 101 | if (is_file($root.'/'.$file)) { |
| 96 | 102 | if ($this->jsCombiner->process($root, $file, $app)) { |
@@ -114,8 +114,8 @@ |
||
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | /** |
| 117 | - * @param $appName |
|
| 118 | - * @param $fileName |
|
| 117 | + * @param string $appName |
|
| 118 | + * @param string $fileName |
|
| 119 | 119 | * @return ISimpleFile |
| 120 | 120 | */ |
| 121 | 121 | public function getCachedCSS($appName, $fileName) { |