summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-02-18 14:26:27 +0100
committerRobin Appelman <icewind@owncloud.com>2014-02-18 14:26:27 +0100
commit2e97a4cd327bd0cdc6a6119093a6068f47da105b (patch)
tree17c64bc7115ad45517f058ab997c652d853b63ce /lib
parentb6f44e9a1d2c6c733249430067147cad46a37481 (diff)
downloadnextcloud-server-2e97a4cd327bd0cdc6a6119093a6068f47da105b.tar.gz
nextcloud-server-2e97a4cd327bd0cdc6a6119093a6068f47da105b.zip
Fix some phpdoc
Diffstat (limited to 'lib')
-rw-r--r--lib/private/preferences.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/private/preferences.php b/lib/private/preferences.php
index 0c1e34d1d36..d5b36b1f229 100644
--- a/lib/private/preferences.php
+++ b/lib/private/preferences.php
@@ -49,6 +49,13 @@ class Preferences {
protected $conn;
/**
+ * 3 dimensional array with the following structure:
+ * [ $userId =>
+ * [ $appId =>
+ * [ $key => $value ]
+ * ]
+ * ]
+ *
* @var array $cache
*/
protected $cache = array();
@@ -79,7 +86,8 @@ class Preferences {
return $users;
}
- /**@param string $user
+ /**
+ * @param string $user
* @return array[]
*/
protected function getUserValues($user) {