Add EOF newlines where missing (bulk) (#1836)

This should solve issues with people making GitHub PRs and having the web editor messing things up. GitHub Web Editor sucks :(
This commit is contained in:
Dylan K. Taylor
2017-12-20 11:56:36 +00:00
committed by GitHub
parent 0ee78d2416
commit 4f8e4f0522
600 changed files with 600 additions and 600 deletions

View File

@ -49,4 +49,4 @@ abstract class ChunkEvent extends LevelEvent{
public function getChunk() : Chunk{
return $this->chunk;
}
}
}

View File

@ -47,4 +47,4 @@ class ChunkLoadEvent extends ChunkEvent{
public function isNewChunk() : bool{
return $this->newChunk;
}
}
}

View File

@ -28,4 +28,4 @@ namespace pocketmine\event\level;
*/
class ChunkPopulateEvent extends ChunkEvent{
public static $handlerList = null;
}
}

View File

@ -30,4 +30,4 @@ use pocketmine\event\Cancellable;
*/
class ChunkUnloadEvent extends ChunkEvent implements Cancellable{
public static $handlerList = null;
}
}

View File

@ -46,4 +46,4 @@ abstract class LevelEvent extends Event{
public function getLevel() : Level{
return $this->level;
}
}
}

View File

@ -28,4 +28,4 @@ namespace pocketmine\event\level;
*/
class LevelInitEvent extends LevelEvent{
public static $handlerList = null;
}
}

View File

@ -28,4 +28,4 @@ namespace pocketmine\event\level;
*/
class LevelLoadEvent extends LevelEvent{
public static $handlerList = null;
}
}

View File

@ -28,4 +28,4 @@ namespace pocketmine\event\level;
*/
class LevelSaveEvent extends LevelEvent{
public static $handlerList = null;
}
}

View File

@ -30,4 +30,4 @@ use pocketmine\event\Cancellable;
*/
class LevelUnloadEvent extends LevelEvent implements Cancellable{
public static $handlerList = null;
}
}

View File

@ -51,4 +51,4 @@ class SpawnChangeEvent extends LevelEvent{
public function getPreviousSpawn() : Position{
return $this->previousSpawn;
}
}
}