Mass removal of useless @param/@return PHPDoc annotations, pass 1

This commit is contained in:
Dylan K. Taylor
2020-01-21 15:10:18 +00:00
parent 7532c609fb
commit c4793241f5
322 changed files with 0 additions and 5360 deletions

View File

@ -67,8 +67,6 @@ class Explosion{
private $subChunkHandler;
/**
* @param Position $center
* @param float $size
* @param Entity|Block $what
*/
public function __construct(Position $center, float $size, $what = null){
@ -90,8 +88,6 @@ class Explosion{
/**
* Calculates which blocks will be destroyed by this explosion. If explodeB() is called without calling this, no blocks
* will be destroyed.
*
* @return bool
*/
public function explodeA() : bool{
if($this->size < 0.1){
@ -153,8 +149,6 @@ class Explosion{
/**
* Executes the explosion's effects on the world. This includes destroying blocks (if any), harming and knocking back entities,
* and creating sounds and particles.
*
* @return bool
*/
public function explodeB() : bool{
$send = [];