mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 01:46:04 +00:00
Strip empty lines at the end of classes
This commit is contained in:
@ -27,5 +27,4 @@ class Arrow extends Item{
|
||||
public function __construct(int $meta = 0){
|
||||
parent::__construct(self::ARROW, $meta, "Arrow");
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -32,5 +32,4 @@ class BlazeRod extends Item{
|
||||
public function getFuelTime() : int{
|
||||
return 2400;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -27,5 +27,4 @@ class Book extends Item{
|
||||
public function __construct(int $meta = 0){
|
||||
parent::__construct(self::BOOK, $meta, "Book");
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -27,5 +27,4 @@ class Clock extends Item{
|
||||
public function __construct(int $meta = 0){
|
||||
parent::__construct(self::CLOCK, $meta, "Clock");
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -35,5 +35,4 @@ class Coal extends Item{
|
||||
public function getFuelTime() : int{
|
||||
return 1600;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -27,5 +27,4 @@ class Compass extends Item{
|
||||
public function __construct(int $meta = 0){
|
||||
parent::__construct(self::COMPASS, $meta, "Compass");
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -965,5 +965,4 @@ class Item implements ItemIds, \JsonSerializable{
|
||||
public function __clone(){
|
||||
$this->cachedNBT = null;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -54,5 +54,4 @@ class ItemBlock extends Item{
|
||||
public function getFuelTime() : int{
|
||||
return $this->getBlock()->getFuelTime();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -49,5 +49,4 @@ class RottenFlesh extends Food{
|
||||
|
||||
return [];
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -32,5 +32,4 @@ class Stick extends Item{
|
||||
public function getFuelTime() : int{
|
||||
return 100;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -55,5 +55,4 @@ class EnchantmentEntry{
|
||||
public function getRandomName() : string{
|
||||
return $this->randomName;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -53,5 +53,4 @@ class EnchantmentList{
|
||||
public function getSize() : int{
|
||||
return $this->enchantments->getSize();
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user