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

@ -47,10 +47,7 @@ class EntityExplodeEvent extends EntityEvent implements Cancellable{
protected $yield;
/**
* @param Entity $entity
* @param Position $position
* @param Block[] $blocks
* @param float $yield
*/
public function __construct(Entity $entity, Position $position, array $blocks, float $yield){
$this->entity = $entity;
@ -59,9 +56,6 @@ class EntityExplodeEvent extends EntityEvent implements Cancellable{
$this->yield = $yield;
}
/**
* @return Position
*/
public function getPosition() : Position{
return $this->position;
}
@ -80,16 +74,10 @@ class EntityExplodeEvent extends EntityEvent implements Cancellable{
$this->blocks = $blocks;
}
/**
* @return float
*/
public function getYield() : float{
return $this->yield;
}
/**
* @param float $yield
*/
public function setYield(float $yield) : void{
$this->yield = $yield;
}