summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-05-13 13:37:18 +0200
committerRobin Appelman <icewind@owncloud.com>2015-06-01 13:22:56 +0200
commit35c377f7a9a0413bea5fa6768467c6e5f7c2d83e (patch)
tree90d02e117cbe715141b1053280c51da998ce1c4c /lib/public
parent8d53dc803f978f0b2e5db1c3503dc5fb0d55b0c5 (diff)
downloadnextcloud-server-35c377f7a9a0413bea5fa6768467c6e5f7c2d83e.tar.gz
nextcloud-server-35c377f7a9a0413bea5fa6768467c6e5f7c2d83e.zip
phpdoc and minor issues
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/files/storage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/files/storage.php b/lib/public/files/storage.php
index ea1da575959..68d00fab34c 100644
--- a/lib/public/files/storage.php
+++ b/lib/public/files/storage.php
@@ -416,7 +416,7 @@ interface Storage {
public function moveFromStorage(\OCP\Files\Storage $sourceStorage, $sourceInternalPath, $targetInternalPath);
/**
- * @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
@@ -424,7 +424,7 @@ interface Storage {
public function acquireLock($path, $type, ILockingProvider $provider);
/**
- * @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
*/