diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-08-17 17:45:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-17 17:45:11 +0200 |
commit | 00cb8e6c54d8f2a26c5770fef5fe4ae1e366d0ce (patch) | |
tree | ab84089689092f01793719f43594d3585b0219a7 /apps/files | |
parent | f6daf17fa773bd4b9c9aae070e39dfbefe8de935 (diff) | |
parent | 3e7b815da469edf7d8be7fda86debde66aef1aa9 (diff) | |
download | nextcloud-server-00cb8e6c54d8f2a26c5770fef5fe4ae1e366d0ce.tar.gz nextcloud-server-00cb8e6c54d8f2a26c5770fef5fe4ae1e366d0ce.zip |
Merge pull request #22253 from nextcloud/debt/noid/docblocks
Fix some MissingDocblockType or InvalidDocblock warnings.
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/lib/Controller/ApiController.php | 2 | ||||
-rw-r--r-- | apps/files/templates/index.php | 2 | ||||
-rw-r--r-- | apps/files/templates/recentlist.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/lib/Controller/ApiController.php b/apps/files/lib/Controller/ApiController.php index 2add685133e..16596ea05a6 100644 --- a/apps/files/lib/Controller/ApiController.php +++ b/apps/files/lib/Controller/ApiController.php @@ -332,7 +332,7 @@ class ApiController extends Controller { * * @NoAdminRequired * - * @param string + * @param string $folderpath * @return string * @throws \OCP\Files\NotFoundException */ diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 2bac8410f91..3ba0474daaf 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -1,4 +1,4 @@ -<?php /** @var $l \OCP\IL10N */ ?> +<?php /** @var \OCP\IL10N $l */ ?> <?php $_['appNavigation']->printPage(); ?> <div id="app-content"> diff --git a/apps/files/templates/recentlist.php b/apps/files/templates/recentlist.php index 360b5c95ee4..95997288193 100644 --- a/apps/files/templates/recentlist.php +++ b/apps/files/templates/recentlist.php @@ -1,4 +1,4 @@ -<?php /** @var $l \OCP\IL10N */ ?> +<?php /** @var \OCP\IL10N $l */ ?> <div id='notification'></div> <div id="emptycontent" class="hidden"></div> |