entity: populate missing return type information

This commit is contained in:
Dylan K. Taylor 2020-01-19 17:03:54 +00:00
parent e328d00cca
commit 205e47c0c4
2 changed files with 4 additions and 0 deletions

View File

@ -2285,6 +2285,7 @@ abstract class Entity extends Location implements Metadatable, EntityIds{
* @param string $name * @param string $name
* @param mixed $value * @param mixed $value
* *
* @return void
* @throws \ErrorException * @throws \ErrorException
* @throws \InvalidArgumentException * @throws \InvalidArgumentException
*/ */

View File

@ -26,5 +26,8 @@ namespace pocketmine\entity;
interface Explosive{ interface Explosive{
/**
* @return void
*/
public function explode(); public function explode();
} }