Mineplex2018-withcommit/Plugins/Mineplex.ReportSite/report.php

114 lines
2.1 KiB
PHP
Raw Normal View History

<?php class Report
{
/** @var Int */
private $id;
2015-12-07 18:05:58 +01:00
/** @var User|Null */
private $handler;
/** @var User */
private $suspect;
/** @var UserReport[] */
private $reporters;
/** @var Int */
private $category;
/** @var Snapshot */
private $snapshot;
/**
* Report constructor.
* @param Int $id
* @param User|Null $handler
* @param User $suspect
* @param UserReport[] $reporters
* @param Int $category
* @param Snapshot $snapshot
*/
function __construct($id, $handler, $suspect, $reporters, $category, $snapshot)
{
$this->id = $id;
$this->handler = $handler;
$this->suspect = $suspect;
$this->reporters = $reporters;
$this->category = $category;
$this->snapshot = $snapshot;
}
2016-06-30 23:23:29 +02:00
/**
* @return DateTime
*/
public function getTimeCreated()
{
return $this->getOldestReport()->getTime();
}
/**
* @return UserReport
2016-06-30 23:23:29 +02:00
*/
private function getOldestReport()
{
/** @var UserReport $oldestReason */
2016-06-30 23:23:29 +02:00
$oldestReason = null;
foreach ($this->reporters as $reason)
{
if ($oldestReason == null || $oldestReason->getTime()->diff($reason->getTime())->invert)
2016-06-30 23:23:29 +02:00
{
$oldestReason = $reason;
}
}
return $oldestReason;
}
/**
* @return Int
*/
public function getId()
{
return $this->id;
}
/**
* @return User|Null
*/
public function getHandler()
{
return $this->handler;
}
/**
* @return User
*/
public function getSuspect()
{
return $this->suspect;
}
/**
* @return UserReport[]
*/
public function getReporters()
{
return $this->reporters;
}
/**
* @return Int
*/
public function getCategory()
{
return $this->category;
}
/**
* @return Snapshot
*/
public function getSnapshot()
{
return $this->snapshot;
}
}