X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fobjectcache%2FHashBagOStuff.php;h=db0e579922a7178b16b7aa4a805d98df44716483;hb=13e33c28983461d5b8bdc1dece0cd0a35347a261;hp=bc5167d7d3d80a57dba89f3134acea60a2edad0b;hpb=cdf4a17a56572ed47e6f62653268714498f8ee3b;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/objectcache/HashBagOStuff.php b/includes/objectcache/HashBagOStuff.php index bc5167d7d3..db0e579922 100644 --- a/includes/objectcache/HashBagOStuff.php +++ b/includes/objectcache/HashBagOStuff.php @@ -35,7 +35,7 @@ class HashBagOStuff extends BagOStuff { } /** - * @param $key string + * @param string $key * @return bool */ protected function expire( $key ) { @@ -51,8 +51,8 @@ class HashBagOStuff extends BagOStuff { } /** - * @param $key string - * @param $casToken[optional] mixed + * @param string $key + * @param mixed $casToken [optional] * @return bool|mixed */ function get( $key, &$casToken = null ) { @@ -70,9 +70,9 @@ class HashBagOStuff extends BagOStuff { } /** - * @param $key string - * @param $value mixed - * @param $exptime int + * @param string $key + * @param mixed $value + * @param int $exptime * @return bool */ function set( $key, $value, $exptime = 0 ) { @@ -81,10 +81,10 @@ class HashBagOStuff extends BagOStuff { } /** - * @param $casToken mixed - * @param $key string - * @param $value mixed - * @param $exptime int + * @param mixed $casToken + * @param string $key + * @param mixed $value + * @param int $exptime * @return bool */ function cas( $casToken, $key, $value, $exptime = 0 ) { @@ -96,8 +96,8 @@ class HashBagOStuff extends BagOStuff { } /** - * @param $key string - * @param $time int + * @param string $key + * @param int $time * @return bool */ function delete( $key, $time = 0 ) {