diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-15 13:19:32 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-16 22:21:57 +0100 |
commit | 6930ae22e462e3fd11acbe0f103f2b9a8e8c0e20 (patch) | |
tree | e7a68a614e8db76cf75a2b2c61003ebe25a68216 /apps/files_versions/lib | |
parent | a17f9111a087055306f8aabf1b4a0c4aca9684e8 (diff) | |
download | nextcloud-server-6930ae22e462e3fd11acbe0f103f2b9a8e8c0e20.tar.gz nextcloud-server-6930ae22e462e3fd11acbe0f103f2b9a8e8c0e20.zip |
Fix more missing or broken PHPDoc
Diffstat (limited to 'apps/files_versions/lib')
-rw-r--r-- | apps/files_versions/lib/hooks.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_versions/lib/hooks.php b/apps/files_versions/lib/hooks.php index 5d3882cc3e3..c0f7201de3b 100644 --- a/apps/files_versions/lib/hooks.php +++ b/apps/files_versions/lib/hooks.php @@ -30,7 +30,7 @@ class Hooks { /** * @brief Erase versions of deleted file - * @param array + * @param array $params * * This function is connected to the delete signal of OC_Filesystem * cleanup the versions directory if the actual file gets deleted @@ -58,7 +58,7 @@ class Hooks { /** * @brief rename/move versions of renamed/moved files - * @param array with oldpath and newpath + * @param array $params array with oldpath and newpath * * This function is connected to the rename signal of OC_Filesystem and adjust the name and location * of the stored versions along the actual file @@ -76,7 +76,7 @@ class Hooks { /** * @brief clean up user specific settings if user gets deleted - * @param array with uid + * @param array $params array with uid * * This function is connected to the pre_deleteUser signal of OC_Users * to remove the used space for versions stored in the database |