phpdoc armageddon for master, pass 1

This commit is contained in:
Dylan K. Taylor
2020-01-22 11:55:03 +00:00
parent 4bae3baa74
commit 67bcc1c0fb
397 changed files with 0 additions and 5391 deletions

View File

@ -102,11 +102,6 @@ abstract class Biome{
self::register(self::BIRCH_FOREST, new ForestBiome(TreeType::BIRCH()));
}
/**
* @param int $id
*
* @return Biome
*/
public static function getBiome(int $id) : Biome{
if(self::$biomes[$id] === null){
self::register($id, new UnknownBiome());
@ -122,12 +117,6 @@ abstract class Biome{
$this->populators[] = $populator;
}
/**
* @param ChunkManager $world
* @param int $chunkX
* @param int $chunkZ
* @param Random $random
*/
public function populateChunk(ChunkManager $world, int $chunkX, int $chunkZ, Random $random) : void{
foreach($this->populators as $populator){
$populator->populate($world, $chunkX, $chunkZ, $random);