summaryrefslogtreecommitdiffstats
path: root/lib/public/files/storage.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-06-05 17:30:45 +0200
committerMorris Jobke <hey@morrisjobke.de>2015-06-05 17:30:45 +0200
commit0c9604e3b2b44885647e2bc2edda95329fddbf47 (patch)
treed05c918de3ae7e2d03de1dc72754883c59637dc5 /lib/public/files/storage.php
parent9899e10a0411d161db1b4e1302690ac74c1ae72c (diff)
downloadnextcloud-server-0c9604e3b2b44885647e2bc2edda95329fddbf47.tar.gz
nextcloud-server-0c9604e3b2b44885647e2bc2edda95329fddbf47.zip
[OCP] update PHPdoc to contain correct @since tags
Diffstat (limited to 'lib/public/files/storage.php')
-rw-r--r--lib/public/files/storage.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/public/files/storage.php b/lib/public/files/storage.php
index ee160c50e89..a238b77eb96 100644
--- a/lib/public/files/storage.php
+++ b/lib/public/files/storage.php
@@ -420,6 +420,7 @@ interface Storage {
* @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
* @param \OCP\Lock\ILockingProvider $provider
* @throws \OCP\Lock\LockedException
+ * @since 8.1.0
*/
public function acquireLock($path, $type, ILockingProvider $provider);
@@ -427,6 +428,7 @@ interface Storage {
* @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
+ * @since 8.1.0
*/
public function releaseLock($path, $type, ILockingProvider $provider);
@@ -435,6 +437,7 @@ interface Storage {
* @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
* @param \OCP\Lock\ILockingProvider $provider
* @throws \OCP\Lock\LockedException
+ * @since 8.1.0
*/
public function changeLock($path, $type, ILockingProvider $provider);
}