Fix some phpdoc

This commit is contained in:
Robin Appelman 2014-02-18 14:26:27 +01:00
parent b6f44e9a1d
commit 2e97a4cd32
1 changed files with 9 additions and 1 deletions

View File

@ -49,6 +49,13 @@ class Preferences {
protected $conn; protected $conn;
/** /**
* 3 dimensional array with the following structure:
* [ $userId =>
* [ $appId =>
* [ $key => $value ]
* ]
* ]
*
* @var array $cache * @var array $cache
*/ */
protected $cache = array(); protected $cache = array();
@ -79,7 +86,8 @@ class Preferences {
return $users; return $users;
} }
/**@param string $user /**
* @param string $user
* @return array[] * @return array[]
*/ */
protected function getUserValues($user) { protected function getUserValues($user) {