X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Flibs%2FHashRing.php;h=21558f77b60c8e91e90055b0c829b718768adf53;hp=f61c139a99e6399b702c315c274f510c8d68cbcf;hb=e0ff77f13034b33aa2c9a7d7b366772b204e5561;hpb=1c421c155f9a3b9d6b7fbfae6255e87119aafb64 diff --git a/includes/libs/HashRing.php b/includes/libs/HashRing.php index f61c139a99..21558f77b6 100644 --- a/includes/libs/HashRing.php +++ b/includes/libs/HashRing.php @@ -26,14 +26,14 @@ * @since 1.22 */ class HashRing { - /** @var Array (location => weight) */ + /** @var array (location => weight) */ protected $sourceMap = []; - /** @var Array (location => (start, end)) */ + /** @var array (location => (start, end)) */ protected $ring = []; /** @var HashRing|null */ protected $liveRing; - /** @var Array (location => UNIX timestamp) */ + /** @var array (location => UNIX timestamp) */ protected $ejectionExpiries = []; /** @var int UNIX timestamp */ protected $ejectionNextExpiry = INF;