61 lines
1.0 KiB
PHP
61 lines
1.0 KiB
PHP
<?php class Report
|
|
{
|
|
/** @var Int */
|
|
private $id;
|
|
|
|
/** @var String */
|
|
private $serverName;
|
|
|
|
/** @var Player */
|
|
private $suspect;
|
|
|
|
/** @var SplObjectStorage */
|
|
private $reporters;
|
|
|
|
/**
|
|
* Report constructor.
|
|
* @param Int $id
|
|
* @param String $serverName
|
|
* @param Player $suspect
|
|
* @param SplObjectStorage $reporters
|
|
*/
|
|
function Report($id, $serverName, $suspect, $reporters)
|
|
{
|
|
$this->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;
|
|
}
|
|
} |