mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 10:22:56 +00:00
Visibility keyword before final or abstract keyword. (#814)
This commit is contained in:
@ -75,7 +75,7 @@ abstract class Spawnable extends Tile{
|
||||
/**
|
||||
* @return CompoundTag
|
||||
*/
|
||||
public abstract function getSpawnCompound();
|
||||
abstract public function getSpawnCompound();
|
||||
|
||||
/**
|
||||
* Called when a player updates a block entity's NBT data
|
||||
|
@ -159,7 +159,7 @@ abstract class Tile extends Position{
|
||||
return false;
|
||||
}
|
||||
|
||||
public final function scheduleUpdate(){
|
||||
final public function scheduleUpdate(){
|
||||
$this->level->updateTiles[$this->id] = $this;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user