phpdoc armageddon for master, pass 1

This commit is contained in:
Dylan K. Taylor
2020-01-22 11:55:03 +00:00
parent 4bae3baa74
commit 67bcc1c0fb
397 changed files with 0 additions and 5391 deletions

View File

@ -35,9 +35,6 @@ class ClickSound implements Sound{
$this->pitch = $pitch;
}
/**
* @return float
*/
public function getPitch() : float{
return $this->pitch;
}

View File

@ -35,9 +35,6 @@ class DoorSound implements Sound{
$this->pitch = $pitch;
}
/**
* @return float
*/
public function getPitch() : float{
return $this->pitch;
}

View File

@ -35,9 +35,6 @@ class FizzSound implements Sound{
$this->pitch = $pitch;
}
/**
* @return float
*/
public function getPitch() : float{
return $this->pitch;
}

View File

@ -35,9 +35,6 @@ class LaunchSound implements Sound{
$this->pitch = $pitch;
}
/**
* @return float
*/
public function getPitch() : float{
return $this->pitch;
}

View File

@ -59,9 +59,6 @@ final class NoteInstrument{
$this->magicNumber = $magicNumber;
}
/**
* @return int
*/
public function getMagicNumber() : int{
return $this->magicNumber;
}

View File

@ -35,9 +35,6 @@ class PopSound implements Sound{
$this->pitch = $pitch;
}
/**
* @return float
*/
public function getPitch() : float{
return $this->pitch;
}

View File

@ -29,8 +29,6 @@ use pocketmine\network\mcpe\protocol\ClientboundPacket;
interface Sound{
/**
* @param Vector3|null $pos
*
* @return ClientboundPacket|ClientboundPacket[]
*/
public function encode(?Vector3 $pos);

View File

@ -37,9 +37,6 @@ class XpLevelUpSound implements Sound{
$this->xpLevel = $xpLevel;
}
/**
* @return int
*/
public function getXpLevel() : int{
return $this->xpLevel;
}