From 2e97a4cd327bd0cdc6a6119093a6068f47da105b Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 18 Feb 2014 14:26:27 +0100 Subject: [PATCH] Fix some phpdoc --- lib/private/preferences.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/private/preferences.php b/lib/private/preferences.php index 0c1e34d1d3..d5b36b1f22 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) {