mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-10 21:45:35 +00:00
scrub useless phpdoc
This commit is contained in:
parent
2d51971b84
commit
15b76a24b7
@ -3236,8 +3236,6 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer{
|
|||||||
/**
|
/**
|
||||||
* Adds a title text to the user's screen, with an optional subtitle.
|
* Adds a title text to the user's screen, with an optional subtitle.
|
||||||
*
|
*
|
||||||
* @param string $title
|
|
||||||
* @param string $subtitle
|
|
||||||
* @param int $fadeIn Duration in ticks for fade-in. If -1 is given, client-sided defaults will be used.
|
* @param int $fadeIn Duration in ticks for fade-in. If -1 is given, client-sided defaults will be used.
|
||||||
* @param int $stay Duration in ticks to stay on screen for
|
* @param int $stay Duration in ticks to stay on screen for
|
||||||
* @param int $fadeOut Duration in ticks for fade-out.
|
* @param int $fadeOut Duration in ticks for fade-out.
|
||||||
@ -3262,8 +3260,6 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the subtitle message, without sending a title.
|
* Sets the subtitle message, without sending a title.
|
||||||
*
|
|
||||||
* @param string $subtitle
|
|
||||||
*/
|
*/
|
||||||
public function sendSubTitle(string $subtitle) : void{
|
public function sendSubTitle(string $subtitle) : void{
|
||||||
$this->sendTitleText($subtitle, SetTitlePacket::TYPE_SET_SUBTITLE);
|
$this->sendTitleText($subtitle, SetTitlePacket::TYPE_SET_SUBTITLE);
|
||||||
@ -3281,8 +3277,6 @@ class Player extends Human implements CommandSender, ChunkLoader, IPlayer{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds small text to the user's screen.
|
* Adds small text to the user's screen.
|
||||||
*
|
|
||||||
* @param string $message
|
|
||||||
*/
|
*/
|
||||||
public function sendActionBarMessage(string $message) : void{
|
public function sendActionBarMessage(string $message) : void{
|
||||||
$this->sendTitleText($message, SetTitlePacket::TYPE_SET_ACTIONBAR_MESSAGE);
|
$this->sendTitleText($message, SetTitlePacket::TYPE_SET_ACTIONBAR_MESSAGE);
|
||||||
|
@ -34,7 +34,6 @@ class EntityDeathEvent extends EntityEvent{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Item[] $drops
|
* @param Item[] $drops
|
||||||
* @param int $xp
|
|
||||||
*/
|
*/
|
||||||
public function __construct(Living $entity, array $drops = [], int $xp = 0){
|
public function __construct(Living $entity, array $drops = [], int $xp = 0){
|
||||||
$this->entity = $entity;
|
$this->entity = $entity;
|
||||||
@ -65,15 +64,12 @@ class EntityDeathEvent extends EntityEvent{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns how much experience is dropped due to this entity's death.
|
* Returns how much experience is dropped due to this entity's death.
|
||||||
* @return int
|
|
||||||
*/
|
*/
|
||||||
public function getXpDropAmount() : int{
|
public function getXpDropAmount() : int{
|
||||||
return $this->xp;
|
return $this->xp;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param int $xp
|
|
||||||
*
|
|
||||||
* @throws \InvalidArgumentException
|
* @throws \InvalidArgumentException
|
||||||
*/
|
*/
|
||||||
public function setXpDropAmount(int $xp) : void{
|
public function setXpDropAmount(int $xp) : void{
|
||||||
|
@ -46,7 +46,6 @@ class PlayerDeathEvent extends EntityDeathEvent{
|
|||||||
/**
|
/**
|
||||||
* @param Item[] $drops
|
* @param Item[] $drops
|
||||||
* @param string|TextContainer|null $deathMessage Null will cause the default vanilla message to be used
|
* @param string|TextContainer|null $deathMessage Null will cause the default vanilla message to be used
|
||||||
* @param int $xp
|
|
||||||
*/
|
*/
|
||||||
public function __construct(Player $entity, array $drops, $deathMessage = null, int $xp = 0){
|
public function __construct(Player $entity, array $drops, $deathMessage = null, int $xp = 0){
|
||||||
parent::__construct($entity, $drops, $xp);
|
parent::__construct($entity, $drops, $xp);
|
||||||
|
@ -55,8 +55,6 @@ class FurnaceRecipe implements Recipe{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated
|
* @deprecated
|
||||||
*
|
|
||||||
* @param CraftingManager $manager
|
|
||||||
*/
|
*/
|
||||||
public function registerToCraftingManager(CraftingManager $manager) : void{
|
public function registerToCraftingManager(CraftingManager $manager) : void{
|
||||||
$manager->registerFurnaceRecipe($this);
|
$manager->registerFurnaceRecipe($this);
|
||||||
|
@ -154,9 +154,6 @@ interface Inventory{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Swaps the specified slots.
|
* Swaps the specified slots.
|
||||||
*
|
|
||||||
* @param int $slot1
|
|
||||||
* @param int $slot2
|
|
||||||
*/
|
*/
|
||||||
public function swap(int $slot1, int $slot2) : void;
|
public function swap(int $slot1, int $slot2) : void;
|
||||||
|
|
||||||
|
@ -30,8 +30,6 @@ interface Recipe{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated
|
* @deprecated
|
||||||
*
|
|
||||||
* @param CraftingManager $manager
|
|
||||||
*/
|
*/
|
||||||
public function registerToCraftingManager(CraftingManager $manager) : void;
|
public function registerToCraftingManager(CraftingManager $manager) : void;
|
||||||
}
|
}
|
||||||
|
@ -178,8 +178,6 @@ class ShapedRecipe implements CraftingRecipe{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated
|
* @deprecated
|
||||||
*
|
|
||||||
* @param CraftingManager $manager
|
|
||||||
*/
|
*/
|
||||||
public function registerToCraftingManager(CraftingManager $manager) : void{
|
public function registerToCraftingManager(CraftingManager $manager) : void{
|
||||||
$manager->registerShapedRecipe($this);
|
$manager->registerShapedRecipe($this);
|
||||||
|
@ -107,8 +107,6 @@ class ShapelessRecipe implements CraftingRecipe{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated
|
* @deprecated
|
||||||
*
|
|
||||||
* @param CraftingManager $manager
|
|
||||||
*/
|
*/
|
||||||
public function registerToCraftingManager(CraftingManager $manager) : void{
|
public function registerToCraftingManager(CraftingManager $manager) : void{
|
||||||
$manager->registerShapelessRecipe($this);
|
$manager->registerShapelessRecipe($this);
|
||||||
|
@ -2842,8 +2842,6 @@ class Level implements ChunkManager, Metadatable{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the current time of day
|
* Returns the current time of day
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
*/
|
||||||
public function getTimeOfDay() : int{
|
public function getTimeOfDay() : int{
|
||||||
return $this->time % self::TIME_FULL;
|
return $this->time % self::TIME_FULL;
|
||||||
|
@ -246,8 +246,6 @@ class Config{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the path of the config.
|
* Returns the path of the config.
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
*/
|
||||||
public function getPath() : string{
|
public function getPath() : string{
|
||||||
return $this->file;
|
return $this->file;
|
||||||
|
@ -46,8 +46,6 @@ final class Process{
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param bool $advanced
|
|
||||||
*
|
|
||||||
* @return int[]|int
|
* @return int[]|int
|
||||||
*/
|
*/
|
||||||
public static function getMemoryUsage(bool $advanced = false){
|
public static function getMemoryUsage(bool $advanced = false){
|
||||||
|
@ -292,8 +292,6 @@ abstract class Terminal{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Emits a string containing Minecraft colour codes to the console formatted with native colours.
|
* Emits a string containing Minecraft colour codes to the console formatted with native colours.
|
||||||
*
|
|
||||||
* @param string $line
|
|
||||||
*/
|
*/
|
||||||
public static function write(string $line) : void{
|
public static function write(string $line) : void{
|
||||||
echo self::toANSI($line);
|
echo self::toANSI($line);
|
||||||
@ -302,8 +300,6 @@ abstract class Terminal{
|
|||||||
/**
|
/**
|
||||||
* Emits a string containing Minecraft colour codes to the console formatted with native colours, followed by a
|
* Emits a string containing Minecraft colour codes to the console formatted with native colours, followed by a
|
||||||
* newline character.
|
* newline character.
|
||||||
*
|
|
||||||
* @param string $line
|
|
||||||
*/
|
*/
|
||||||
public static function writeLine(string $line) : void{
|
public static function writeLine(string $line) : void{
|
||||||
echo self::toANSI($line) . self::$FORMAT_RESET . PHP_EOL;
|
echo self::toANSI($line) . self::$FORMAT_RESET . PHP_EOL;
|
||||||
|
@ -293,8 +293,6 @@ class Utils{
|
|||||||
/**
|
/**
|
||||||
* @deprecated
|
* @deprecated
|
||||||
* @see Process::getThreadCount()
|
* @see Process::getThreadCount()
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
*/
|
||||||
public static function getThreadCount() : int{
|
public static function getThreadCount() : int{
|
||||||
return Process::getThreadCount();
|
return Process::getThreadCount();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user