diff options
author | Max Kovalenko <mxss1998@yandex.ru> | 2019-05-27 08:44:52 +0300 |
---|---|---|
committer | Max Kovalenko <mxss1998@yandex.ru> | 2019-05-27 09:04:05 +0300 |
commit | a8ddf3471ea054dcaa418901a20f16cc92764a61 (patch) | |
tree | bd7dc5100de0db692662b5891f93597b9e04d5b7 /apps | |
parent | 7f689af6f4c8465f7525c17f5ca9d836ae6a53ae (diff) | |
download | nextcloud-server-a8ddf3471ea054dcaa418901a20f16cc92764a61.tar.gz nextcloud-server-a8ddf3471ea054dcaa418901a20f16cc92764a61.zip |
fixed phpdoc parameter types
Signed-off-by: Max Kovalenko <mxss1998@yandex.ru>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/lib/Controller/ApiController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/lib/Controller/ApiController.php b/apps/files/lib/Controller/ApiController.php index f9e4bcb5738..b0965d255bd 100644 --- a/apps/files/lib/Controller/ApiController.php +++ b/apps/files/lib/Controller/ApiController.php @@ -295,8 +295,8 @@ class ApiController extends Controller { * * @NoAdminRequired * - * @param bool $show - * @param bool $key the key of the folder + * @param int $show + * @param string $key the key of the folder * * @return Response */ |