aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/files/storage
diff options
context:
space:
mode:
authorringmaster <epithet@gmail.com>2014-05-28 09:04:05 -0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-06-04 07:55:45 +0200
commit54865815f5c6044b3b4ea4793f6677d48c16604d (patch)
treeaf4f06d0474dea9f09b9e7885b53ed278b699463 /lib/private/files/storage
parentc9c6a0ab1e7dc7afc3908b54bfe89e1bbb2942d4 (diff)
downloadnextcloud-server-54865815f5c6044b3b4ea4793f6677d48c16604d.tar.gz
nextcloud-server-54865815f5c6044b3b4ea4793f6677d48c16604d.zip
Move Lock to private namespace, add interface. Update PHPDoc.
Diffstat (limited to 'lib/private/files/storage')
-rw-r--r--lib/private/files/storage/wrapper/lockingwrapper.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/files/storage/wrapper/lockingwrapper.php b/lib/private/files/storage/wrapper/lockingwrapper.php
index 4f41c528253..428c2c516a4 100644
--- a/lib/private/files/storage/wrapper/lockingwrapper.php
+++ b/lib/private/files/storage/wrapper/lockingwrapper.php
@@ -10,7 +10,7 @@
namespace OC\Files\Storage\Wrapper;
use OC\Files\Filesystem;
-use OCP\Files\Lock;
+use OC\Files\Lock;
/**
* Class LockingWrapper
@@ -23,7 +23,7 @@ use OCP\Files\Lock;
*/
class LockingWrapper extends Wrapper {
- /** @var array $locks Holds an array of lock instances indexed by path for this storage */
+ /** @var \OCP\Files\Lock[] $locks Holds an array of lock instances indexed by path for this storage */
protected $locks = array();
/**