id = $id; $this->handler = $handler; $this->suspect = $suspect; $this->reporters = $reporters; $this->category = $category; } /** * @return Int */ public function getId() { return $this->id; } /** * @return Player|Null */ public function getHandler() { return $this->handler; } /** * @return Player */ public function getSuspect() { return $this->suspect; } /** * @return SplObjectStorage */ public function getReporters() { return $this->reporters; } /** * @return Int */ public function getCategory() { return $this->category; } }