mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-08 19:02:59 +00:00
phpdoc armageddon for master, pass 1
This commit is contained in:
@ -35,9 +35,6 @@ class ClickSound implements Sound{
|
||||
$this->pitch = $pitch;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return float
|
||||
*/
|
||||
public function getPitch() : float{
|
||||
return $this->pitch;
|
||||
}
|
||||
|
@ -35,9 +35,6 @@ class DoorSound implements Sound{
|
||||
$this->pitch = $pitch;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return float
|
||||
*/
|
||||
public function getPitch() : float{
|
||||
return $this->pitch;
|
||||
}
|
||||
|
@ -35,9 +35,6 @@ class FizzSound implements Sound{
|
||||
$this->pitch = $pitch;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return float
|
||||
*/
|
||||
public function getPitch() : float{
|
||||
return $this->pitch;
|
||||
}
|
||||
|
@ -35,9 +35,6 @@ class LaunchSound implements Sound{
|
||||
$this->pitch = $pitch;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return float
|
||||
*/
|
||||
public function getPitch() : float{
|
||||
return $this->pitch;
|
||||
}
|
||||
|
@ -59,9 +59,6 @@ final class NoteInstrument{
|
||||
$this->magicNumber = $magicNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return int
|
||||
*/
|
||||
public function getMagicNumber() : int{
|
||||
return $this->magicNumber;
|
||||
}
|
||||
|
@ -35,9 +35,6 @@ class PopSound implements Sound{
|
||||
$this->pitch = $pitch;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return float
|
||||
*/
|
||||
public function getPitch() : float{
|
||||
return $this->pitch;
|
||||
}
|
||||
|
@ -29,8 +29,6 @@ use pocketmine\network\mcpe\protocol\ClientboundPacket;
|
||||
interface Sound{
|
||||
|
||||
/**
|
||||
* @param Vector3|null $pos
|
||||
*
|
||||
* @return ClientboundPacket|ClientboundPacket[]
|
||||
*/
|
||||
public function encode(?Vector3 $pos);
|
||||
|
@ -37,9 +37,6 @@ class XpLevelUpSound implements Sound{
|
||||
$this->xpLevel = $xpLevel;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return int
|
||||
*/
|
||||
public function getXpLevel() : int{
|
||||
return $this->xpLevel;
|
||||
}
|
||||
|
Reference in New Issue
Block a user