fixing EOF newlines on new files

This commit is contained in:
Dylan K. Taylor 2019-12-07 10:08:29 +00:00
parent c10ce84035
commit 733d530ed0
8 changed files with 8 additions and 8 deletions

View File

@ -63,4 +63,4 @@ class CompletedUsingItemPacket extends DataPacket{
public function handle(NetworkSession $session) : bool{ public function handle(NetworkSession $session) : bool{
return $session->handleCompletedUsingItem($this); return $session->handleCompletedUsingItem($this);
} }
} }

View File

@ -64,4 +64,4 @@ class LegacySkinAdapter implements SkinAdapter{
} }
return new Skin($data->getSkinId(), $data->getSkinImage()->getData(), $capeData, $geometryName, $data->getGeometryData()); return new Skin($data->getSkinId(), $data->getSkinImage()->getData(), $capeData, $geometryName, $data->getGeometryData());
} }
} }

View File

@ -48,4 +48,4 @@ class PotionContainerChangeRecipe{
public function getOutputItemId() : int{ public function getOutputItemId() : int{
return $this->outputItemId; return $this->outputItemId;
} }
} }

View File

@ -48,4 +48,4 @@ class PotionTypeRecipe{
public function getOutputPotionType() : int{ public function getOutputPotionType() : int{
return $this->outputPotionType; return $this->outputPotionType;
} }
} }

View File

@ -45,4 +45,4 @@ interface SkinAdapter{
* @return Skin * @return Skin
*/ */
public function fromSkinData(SkinData $data) : Skin; public function fromSkinData(SkinData $data) : Skin;
} }

View File

@ -40,4 +40,4 @@ class SkinAdapterSingleton{
public static function set(SkinAdapter $adapter) : void{ public static function set(SkinAdapter $adapter) : void{
self::$skinAdapter = $adapter; self::$skinAdapter = $adapter;
} }
} }

View File

@ -152,4 +152,4 @@ class SkinData{
return $this->capeId; return $this->capeId;
} }
} }

View File

@ -64,4 +64,4 @@ class SkinImage{
public function getData() : string{ public function getData() : string{
return $this->data; return $this->data;
} }
} }