diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-04-07 13:49:16 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-04-07 13:49:16 +0200 |
commit | dd7c491bff1c368496ae7858ae63a9a034e98a95 (patch) | |
tree | 09254214e1d343c05e05c85c37f27146bcec2480 | |
parent | a2182cde9060b81ea8332598e68ecbdb654d569e (diff) | |
download | nextcloud-server-dd7c491bff1c368496ae7858ae63a9a034e98a95.tar.gz nextcloud-server-dd7c491bff1c368496ae7858ae63a9a034e98a95.zip |
Fix PHPDoc
-rw-r--r-- | lib/private/app.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/private/app.php b/lib/private/app.php index ee92f8f5adc..076d07c3279 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -513,7 +513,7 @@ class OC_App { /** * search for an app in all app-directories * - * @param $appId + * @param string $appId * @return mixed (bool|string) */ protected static function findAppInDirectories($appId) { @@ -732,6 +732,8 @@ class OC_App { /** * register a personal form to be shown + * @param string $app + * @param string $page */ public static function registerPersonal($app, $page) { self::$personalForms[] = $app . '/' . $page . '.php'; |