diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2015-01-16 18:31:15 +0000 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2015-01-16 20:30:43 +0000 |
commit | 2b99fc76eced32c740a9f87d48354e0ffdc57f45 (patch) | |
tree | 91d1b951b175222a61d28b29d29c75031efe0b27 /lib/private/app.php | |
parent | 3465604cf9ed20b169da9c1a8bbd31a9afcf9183 (diff) | |
download | nextcloud-server-2b99fc76eced32c740a9f87d48354e0ffdc57f45.tar.gz nextcloud-server-2b99fc76eced32c740a9f87d48354e0ffdc57f45.zip |
Cleanup of PHPDoc return types
Diffstat (limited to 'lib/private/app.php')
-rw-r--r-- | lib/private/app.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/app.php b/lib/private/app.php index e75202eec23..58625b26388 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -489,7 +489,7 @@ class OC_App { /** * Get the path where to install apps * - * @return string + * @return string|false */ public static function getInstallPath() { if (OC_Config::getValue('appstoreenabled', true) == false) { @@ -891,7 +891,7 @@ class OC_App { /** * get a list of all apps on apps.owncloud.com - * @return array, multi-dimensional array of apps. + * @return array|false multi-dimensional array of apps. * Keys: id, name, type, typename, personid, license, detailpage, preview, changed, description */ public static function getAppstoreApps($filter = 'approved', $category = null) { @@ -1180,7 +1180,7 @@ class OC_App { /** * @param string $appId - * @return \OC\Files\View + * @return \OC\Files\View|false */ public static function getStorage($appId) { if (OC_App::isEnabled($appId)) { //sanity check |