@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | * This will be used in the {DAV:}supported-report-set property. |
149 | 149 | * |
150 | 150 | * @param string $uri |
151 | - * @return array |
|
151 | + * @return string[] |
|
152 | 152 | */ |
153 | 153 | public function getSupportedReportSet($uri) { |
154 | 154 | return [self::REPORT_NAME]; |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | * @param string $reportName |
161 | 161 | * @param $report |
162 | 162 | * @param string $uri |
163 | - * @return bool |
|
163 | + * @return null|false |
|
164 | 164 | * @throws BadRequest |
165 | 165 | * @throws PreconditionFailed |
166 | 166 | * @internal param $ [] $report |
@@ -333,6 +333,7 @@ discard block |
||
333 | 333 | * with a leading slash but no trailing slash |
334 | 334 | * @param string[] $requestedProps requested properties |
335 | 335 | * @param Node[] nodes nodes for which to fetch and prepare responses |
336 | + * @param Node[] $nodes |
|
336 | 337 | * @return Response[] |
337 | 338 | */ |
338 | 339 | public function prepareResponses($filesUri, $requestedProps, $nodes) { |
@@ -22,7 +22,6 @@ |
||
22 | 22 | namespace OCA\Files_External\Lib\Backend; |
23 | 23 | |
24 | 24 | use OCP\IL10N; |
25 | -use OCP\Files\External\DefinitionParameter; |
|
26 | 25 | use OCP\Files\External\Auth\AuthMechanism; |
27 | 26 | use OCP\Files\External\Backend\Backend; |
28 | 27 | use OCA\Files_External\Lib\LegacyDependencyCheckPolyfill; |
@@ -22,7 +22,6 @@ |
||
22 | 22 | namespace OCA\Files_External\Lib\Backend; |
23 | 23 | |
24 | 24 | use OCP\IL10N; |
25 | -use OCP\Files\External\DefinitionParameter; |
|
26 | 25 | use OCP\Files\External\Auth\AuthMechanism; |
27 | 26 | use OCP\Files\External\Backend\Backend; |
28 | 27 | use OCA\Files_External\Lib\LegacyDependencyCheckPolyfill; |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | /** |
121 | 121 | * List all installed apps |
122 | 122 | * |
123 | - * @return string[] |
|
123 | + * @return integer[] |
|
124 | 124 | */ |
125 | 125 | public function getInstalledApps() { |
126 | 126 | return array_keys($this->getInstalledAppsValues()); |
@@ -347,6 +347,9 @@ discard block |
||
347 | 347 | return in_array($appId, $this->shippedApps); |
348 | 348 | } |
349 | 349 | |
350 | + /** |
|
351 | + * @param string $appId |
|
352 | + */ |
|
350 | 353 | private function isAlwaysEnabled($appId) { |
351 | 354 | $alwaysEnabled = $this->getAlwaysEnabledApps(); |
352 | 355 | return in_array($appId, $alwaysEnabled); |
@@ -374,7 +377,7 @@ discard block |
||
374 | 377 | |
375 | 378 | /** |
376 | 379 | * @param string $package |
377 | - * @return mixed |
|
380 | + * @return integer |
|
378 | 381 | * @since 9.2.0 |
379 | 382 | */ |
380 | 383 | public function installApp($package) { |
@@ -386,7 +389,7 @@ discard block |
||
386 | 389 | |
387 | 390 | /** |
388 | 391 | * @param string $package |
389 | - * @return mixed |
|
392 | + * @return boolean |
|
390 | 393 | * @since 9.2.0 |
391 | 394 | */ |
392 | 395 | public function updateApp($package) { |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | * |
111 | 111 | * @param string $newPath |
112 | 112 | * @param \OCP\Share\IShare $share |
113 | - * @return bool |
|
113 | + * @return boolean|null |
|
114 | 114 | */ |
115 | 115 | private function updateFileTarget($newPath, &$share) { |
116 | 116 | $share->setTarget($newPath); |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * @param string $path |
127 | 127 | * @param View $view |
128 | 128 | * @param SharedMount[] $mountpoints |
129 | - * @return mixed |
|
129 | + * @return string |
|
130 | 130 | */ |
131 | 131 | private function generateUniqueTarget($path, $view, array $mountpoints) { |
132 | 132 | $pathinfo = pathinfo($path); |
@@ -32,7 +32,7 @@ |
||
32 | 32 | * Creates a Folder that represents a non-existing path |
33 | 33 | * |
34 | 34 | * @param string $path path |
35 | - * @return string non-existing node class |
|
35 | + * @return NonExistingFile non-existing node class |
|
36 | 36 | */ |
37 | 37 | protected function createNonExistingNode($path) { |
38 | 38 | return new NonExistingFile($this->root, $this->view, $path); |
@@ -34,7 +34,7 @@ |
||
34 | 34 | * Creates a Folder that represents a non-existing path |
35 | 35 | * |
36 | 36 | * @param string $path path |
37 | - * @return string non-existing node class |
|
37 | + * @return NonExistingFolder non-existing node class |
|
38 | 38 | */ |
39 | 39 | protected function createNonExistingNode($path) { |
40 | 40 | return new NonExistingFolder($this->root, $this->view, $path); |
@@ -136,7 +136,7 @@ |
||
136 | 136 | * Returns the list of members for a group-principal |
137 | 137 | * |
138 | 138 | * @param string $principal |
139 | - * @return array |
|
139 | + * @return string[] |
|
140 | 140 | */ |
141 | 141 | function getGroupMemberSet($principal) { |
142 | 142 | // TODO: for now the group principal has only one member, the user itself |
@@ -136,7 +136,7 @@ |
||
136 | 136 | * Returns the list of members for a group-principal |
137 | 137 | * |
138 | 138 | * @param string $principal |
139 | - * @return array |
|
139 | + * @return string[] |
|
140 | 140 | */ |
141 | 141 | function getGroupMemberSet($principal) { |
142 | 142 | // TODO: for now the group principal has only one member, the user itself |