diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-05-13 13:37:18 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2015-06-01 13:22:56 +0200 |
commit | 35c377f7a9a0413bea5fa6768467c6e5f7c2d83e (patch) | |
tree | 90d02e117cbe715141b1053280c51da998ce1c4c /lib/private/files/storage/storage.php | |
parent | 8d53dc803f978f0b2e5db1c3503dc5fb0d55b0c5 (diff) | |
download | nextcloud-server-35c377f7a9a0413bea5fa6768467c6e5f7c2d83e.tar.gz nextcloud-server-35c377f7a9a0413bea5fa6768467c6e5f7c2d83e.zip |
phpdoc and minor issues
Diffstat (limited to 'lib/private/files/storage/storage.php')
-rw-r--r-- | lib/private/files/storage/storage.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/files/storage/storage.php b/lib/private/files/storage/storage.php index 8b34908e610..642544bad37 100644 --- a/lib/private/files/storage/storage.php +++ b/lib/private/files/storage/storage.php @@ -78,7 +78,7 @@ interface Storage extends \OCP\Files\Storage { public function getMetaData($path); /** - * @param string $path + * @param string $path The path of the file to acquire the lock for * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE * @param \OCP\Lock\ILockingProvider $provider * @throws \OCP\Lock\LockedException @@ -86,7 +86,7 @@ interface Storage extends \OCP\Files\Storage { public function acquireLock($path, $type, ILockingProvider $provider); /** - * @param string $path + * @param string $path The path of the file to release the lock for * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE * @param \OCP\Lock\ILockingProvider $provider */ |