getSeed() public method

public getSeed ( ) : integer | string
return integer | string int, or the string numeric representation of a long in 32-bit systems
Exemplo n.º 1
0
 /**
  * Gets the level seed
  *
  * @return int
  */
 public function getSeed()
 {
     return $this->provider->getSeed();
 }
Exemplo n.º 2
0
 /**
  * Gets the level seed
  *
  * @return int
  */
 public function getSeed() : int
 {
     return (int) $this->provider->getSeed();
 }