1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2025-01-22 02:00:40 +00:00

Prevent constructing of Util.

This commit is contained in:
Tim Düsterhus 2012-03-12 22:51:29 +01:00
parent 24161a5939
commit a3b912c823

View File

@ -13,7 +13,7 @@ use \wcf\system\WCF;
* @package be.bastelstu.wcf.chat
* @subpackage util
*/
class ChatUtil {
final class ChatUtil {
/**
* Matches a time-interval with modifiers.
* Each part may be optionally separated by a comma
@ -200,4 +200,6 @@ class ChatUtil {
$ush->update(WCF::getUser()->userID, $key, (isset(static::$serialize[$key])) ? serialize($value) : $value, $packageID);
}
}
private function __construct() { }
}