Mineplex/mineplex-develop-9-seperated-files/Mineplex.ReportSite/user_report.php
Daniel Waggner 38a20f98c2 Removed Files
These two directories contain code that was removed from the src and dependencies of the compiled files. They were removed due to being either a. unnecessary or b. a royal pain in my booty.
2021-05-23 18:13:37 -07:00

42 lines
667 B
PHP

<?php class UserReport
{
private $user;
private $time;
private $reason;
/**
* @param User $user
* @param DateTime $time
* @param String $reason
*/
function __construct($user, $time, $reason)
{
$this->user = $user;
$this->time = $time;
$this->reason = $reason;
}
/**
* @return User
*/
public function getUser()
{
return $this->user;
}
/**
* @return DateTime
*/
public function getTime()
{
return $this->time;
}
/**
* @return String
*/
public function getReason()
{
return $this->reason;
}
}