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_encryption | |
parent | a17f9111a087055306f8aabf1b4a0c4aca9684e8 (diff) | |
download | nextcloud-server-6930ae22e462e3fd11acbe0f103f2b9a8e8c0e20.tar.gz nextcloud-server-6930ae22e462e3fd11acbe0f103f2b9a8e8c0e20.zip |
Fix more missing or broken PHPDoc
Diffstat (limited to 'apps/files_encryption')
-rw-r--r-- | apps/files_encryption/hooks/hooks.php | 2 | ||||
-rw-r--r-- | apps/files_encryption/lib/proxy.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index fdc1126f448..0ab1c4b129c 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -422,7 +422,7 @@ class Hooks { /**
* @brief after a file is renamed, rename its keyfile and share-keys also fix the file size and fix also the sharing
- * @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
diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index b5bb03cb1c1..3449516f6ef 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -226,7 +226,7 @@ class Proxy extends \OC_FileProxy { /** * @param string $path - * @param $result + * @param resource $result * @return resource */ public function postFopen($path, &$result) { |