Mineplex/mineplex-develop-9-seperated-files/Mineplex.ReportSite/user.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

61 lines
973 B
PHP

<?php class User
{
/** @var Int */
private $id;
/** @var String */
private $uuid;
/** @var String */
private $username;
/** @var String */
private $rank;
/**
* Player constructor.
* @param Int $id
* @param String $uuid
* @param String $username
* @param String $rank
*/
function __construct($id, $uuid, $username, $rank)
{
$this->id = $id;
$this->uuid = $uuid;
$this->username = $username;
$this->rank = $rank;
}
/**
* @return Int
*/
public function getId()
{
return $this->id;
}
/**
* @return String
*/
public function getUUID()
{
return $this->uuid;
}
/**
* @return String
*/
public function getUsername()
{
return $this->username;
}
/**
* @return String
*/
public function getRank()
{
return $this->rank;
}
}