id = $id; $this->serverName = $serverName; $this->suspect = $suspect; $this->reporters = $reporters; } /** * @return Int */ public function getId() { return $this->id; } /** * @return String */ public function getServerName() { return $this->serverName; } /** * @return Player */ public function getSuspect() { return $this->suspect; } /** * @return SplObjectStorage */ public function getReporters() { return $this->reporters; } }