/** * Sets the seed for this RNG. Usually not needed. * * @param int $seed will be set to a random value if not given */ public function setSeed($seed = -1) { $this->realRandom->setSeed($seed); }