diff --git a/src/block/tile/TileFactory.php b/src/block/tile/TileFactory.php index a72951af35..8f1d100d72 100644 --- a/src/block/tile/TileFactory.php +++ b/src/block/tile/TileFactory.php @@ -144,7 +144,7 @@ final class TileFactory{ } /** - *@internal + * @internal */ public static function createFromData(World $world, CompoundTag $nbt) : ?Tile{ $type = $nbt->getString(Tile::TAG_ID, "", true); diff --git a/src/entity/EntityFactory.php b/src/entity/EntityFactory.php index c7bab408c8..a74d615d99 100644 --- a/src/entity/EntityFactory.php +++ b/src/entity/EntityFactory.php @@ -199,7 +199,7 @@ final class EntityFactory{ * Creates an entity from data stored on a chunk. * * @throws \RuntimeException - *@internal + * @internal */ public static function createFromData(World $world, CompoundTag $nbt) : ?Entity{ $saveId = $nbt->getTag("id") ?? $nbt->getTag("identifier"); diff --git a/src/world/World.php b/src/world/World.php index aa374dd94b..05135cb6bd 100644 --- a/src/world/World.php +++ b/src/world/World.php @@ -596,7 +596,7 @@ class World implements ChunkManager{ /** * Unregisters a chunk listener previously registered. * - *@see World::registerChunkListener() + * @see World::registerChunkListener() */ public function unregisterChunkListener(ChunkListener $listener, int $chunkX, int $chunkZ) : void{ $hash = World::chunkHash($chunkX, $chunkZ);