Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-05-18 13:43:07 +0300
committerJoas Schilling <nickvergessen@gmx.de>2015-05-18 13:43:07 +0300
commit85f500f07037cab21757fffcae7a5cd78db43bd1 (patch)
tree7a2d888a58d047348a7ed941b8dafa6082a6bce0
parent7e271012b205af08e5f31ea8d6419fecb08c317e (diff)
parentfc2c9e8f5f02ca1afece555ddd1445fcead55875 (diff)
Merge pull request #16398 from owncloud/fix-php-docv8.1.0beta2
Fix PHPDoc of public interface ILockingProvider
-rw-r--r--lib/public/lock/ilockingprovider.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/lock/ilockingprovider.php b/lib/public/lock/ilockingprovider.php
index a584ec02ef6..0b17580faac 100644
--- a/lib/public/lock/ilockingprovider.php
+++ b/lib/public/lock/ilockingprovider.php
@@ -35,7 +35,7 @@ interface ILockingProvider {
/**
* @param string $path
* @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
- * @throws \OCP\Files\Lock\LockedException
+ * @throws \OCP\Lock\LockedException
*/
public function acquireLock($path, $type);