* @package WoltLabSuite\Core\Data */ trait TUserContent { /** * @see IUserContent::getTime() */ public function getTime() { return $this->time; } /** * @see IUserContent::getUserID() */ public function getUserID() { return $this->userID; } /** * @see IUserContent::getUsername() */ public function getUsername() { return $this->username; } }