Merge remote branch 'acp.language/master'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IEditableCachedObject.class.php
1 <?php
2 namespace wcf\data;
3
4 /**
5 * Abstract class for all cached data holder objects.
6 *
7 * @author Marcel Werk
8 * @copyright 2001-2012 WoltLab GmbH
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package com.woltlab.wcf
11 * @subpackage data
12 * @category Community Framework
13 */
14 interface IEditableCachedObject extends IEditableObject {
15 /**
16 * Resets the cache of this object type.
17 */
18 public static function resetCache();
19 }