sender = $sender; $this->command = $command; } /** * @return CommandSender */ public function getSender() : CommandSender{ return $this->sender; } /** * @return string */ public function getCommand() : string{ return $this->command; } /** * @param string $command */ public function setCommand(string $command) : void{ $this->command = $command; } }