X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fcache%2FUserCache.php;h=7f36f5a64f8b1781b3d0c31b0ebe5fd188dd2517;hb=1bd2974bbe8f972681717fbaa553d9099efa2f46;hp=cea3bf2f32082bf37e53472bd148ee8a90a02528;hpb=91e41289558af817650354c6988a0708dc051e35;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/cache/UserCache.php b/includes/cache/UserCache.php index cea3bf2f32..7f36f5a64f 100644 --- a/includes/cache/UserCache.php +++ b/includes/cache/UserCache.php @@ -46,9 +46,9 @@ class UserCache { /** * Get a property of a user based on their user ID * - * @param $userId integer User ID + * @param int $userId User ID * @param string $prop User property - * @return mixed The property or false if the user does not exist + * @return mixed|bool The property or false if the user does not exist */ public function getProp( $userId, $prop ) { if ( !isset( $this->cache[$userId][$prop] ) ) { @@ -64,7 +64,7 @@ class UserCache { /** * Get the name of a user or return $ip if the user ID is 0 * - * @param integer $userId + * @param int $userId * @param string $ip * @return string * @since 1.22 @@ -77,7 +77,7 @@ class UserCache { * Preloads user names for given list of users. * @param array $userIds List of user IDs * @param array $options Option flags; include 'userpage' and 'usertalk' - * @param string $caller the calling method + * @param string $caller The calling method */ public function doQuery( array $userIds, $options = array(), $caller = '' ) { wfProfileIn( __METHOD__ ); @@ -140,7 +140,7 @@ class UserCache { /** * Check if a cache type is in $options and was not loaded for this user * - * @param $uid integer user ID + * @param int $uid User ID * @param string $type Cache type * @param array $options Requested cache types * @return bool