1
0
mirror of https://github.com/pmmp/PocketMine-MP.git synced 2025-06-01 17:53:41 +00:00

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
src/pocketmine/entity

@ -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
*/ */

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