1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-12-22 21:40:08 +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 @@
* @package be.bastelstu.wcf.chat * @package be.bastelstu.wcf.chat
* @subpackage util * @subpackage util
*/ */
class ChatUtil { final class ChatUtil {
/** /**
* Matches a time-interval with modifiers. * Matches a time-interval with modifiers.
* Each part may be optionally separated by a comma * Each part may be optionally separated by a comma
@ -200,4 +200,6 @@ public static function writeUserData(array $data) {
$ush->update(WCF::getUser()->userID, $key, (isset(static::$serialize[$key])) ? serialize($value) : $value, $packageID); $ush->update(WCF::getUser()->userID, $key, (isset(static::$serialize[$key])) ? serialize($value) : $value, $packageID);
} }
} }
private function __construct() { }
} }