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