time = $this->getPlainJsonObject()->time; $this->weapon = $this->getPlainJsonObject()->weapon; $this->shooter = $this->maniaControl->getPlayerManager()->getPlayer($this->getPlainJsonObject()->shooter); } /** * @return int */ public function getTime() { return $this->time; } /** * @return int */ public function getWeapon() { return $this->weapon; } /** * @return Player */ public function getShooter() { return $this->shooter; } /** Dumps the Object with some Information */ public function dump() { parent::dump(); var_dump("With getShooter() you get a Player Object"); } }