getSeed() public méthode

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