getSeed() public method

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