diff --git a/src/event/player/PlayerChatAsyncEvent.php b/src/event/player/PlayerChatAsyncEvent.php deleted file mode 100644 index c520aa5a1..000000000 --- a/src/event/player/PlayerChatAsyncEvent.php +++ /dev/null @@ -1,92 +0,0 @@ -message; - } - - public function setMessage(string $message) : void{ - $this->message = $message; - } - - /** - * Changes the player that is sending the message - */ - public function setPlayer(Player $player) : void{ - $this->player = $player; - } - - public function getPlayer() : Player{ - return $this->player; - } - - public function getFormatter() : ChatFormatter{ - return $this->formatter; - } - - public function setFormatter(ChatFormatter $formatter) : void{ - $this->formatter = $formatter; - } - - /** - * @return CommandSender[] - */ - public function getRecipients() : array{ - return $this->recipients; - } - - /** - * @param CommandSender[] $recipients - */ - public function setRecipients(array $recipients) : void{ - Utils::validateArrayValueType($recipients, function(CommandSender $_) : void{}); - $this->recipients = $recipients; - } -}