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