mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-14 22:01:59 +00:00
fixing EOF newlines on new files
This commit is contained in:
parent
c10ce84035
commit
733d530ed0
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -48,4 +48,4 @@ class PotionContainerChangeRecipe{
|
|||||||
public function getOutputItemId() : int{
|
public function getOutputItemId() : int{
|
||||||
return $this->outputItemId;
|
return $this->outputItemId;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -48,4 +48,4 @@ class PotionTypeRecipe{
|
|||||||
public function getOutputPotionType() : int{
|
public function getOutputPotionType() : int{
|
||||||
return $this->outputPotionType;
|
return $this->outputPotionType;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -45,4 +45,4 @@ interface SkinAdapter{
|
|||||||
* @return Skin
|
* @return Skin
|
||||||
*/
|
*/
|
||||||
public function fromSkinData(SkinData $data) : Skin;
|
public function fromSkinData(SkinData $data) : Skin;
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -152,4 +152,4 @@ class SkinData{
|
|||||||
return $this->capeId;
|
return $this->capeId;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -64,4 +64,4 @@ class SkinImage{
|
|||||||
public function getData() : string{
|
public function getData() : string{
|
||||||
return $this->data;
|
return $this->data;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user