From 5955ff53939cac6e466faa6fbfdf8f32be5fa5ee Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 22 Jan 2020 15:20:50 +0000 Subject: [PATCH] fix phpdoc spacing screwed up by phpstorm --- src/block/tile/TileFactory.php | 2 +- src/entity/EntityFactory.php | 2 +- src/world/World.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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);