diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2015-03-26 13:37:34 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-07 13:30:27 +0200 |
commit | 2244ea998da0b49ef76144979f4bce02393eac89 (patch) | |
tree | 817071bfebf4012d6cb97b486d16ffb4d4680bb6 | |
parent | 6c9251d9f8bd105ed5e3a99e124f0bab997fb477 (diff) | |
download | nextcloud-server-2244ea998da0b49ef76144979f4bce02393eac89.tar.gz nextcloud-server-2244ea998da0b49ef76144979f4bce02393eac89.zip |
core: documentation fixes
-rw-r--r-- | lib/private/encryption/keys/storage.php | 2 | ||||
-rw-r--r-- | lib/public/encryption/keys/istorage.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/encryption/keys/storage.php b/lib/private/encryption/keys/storage.php index c8afcbbd213..041db2a2cb8 100644 --- a/lib/private/encryption/keys/storage.php +++ b/lib/private/encryption/keys/storage.php @@ -114,7 +114,7 @@ class Storage implements \OCP\Encryption\Keys\IStorage { * * @param string $path path to file * @param string $keyId id of the key - * @param mixed $key + * @param boolean */ public function setFileKey($path, $keyId, $key) { $keyDir = $this->getFileKeyDir($path); diff --git a/lib/public/encryption/keys/istorage.php b/lib/public/encryption/keys/istorage.php index 3a2562102ce..426057b80d0 100644 --- a/lib/public/encryption/keys/istorage.php +++ b/lib/public/encryption/keys/istorage.php @@ -69,7 +69,7 @@ interface IStorage { * * @param string $path path to file * @param string $keyId id of the key - * @param mixed $key + * @param boolean */ public function setFileKey($path, $keyId, $key); |