Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IEditableCachedObject.class.php
CommitLineData
11ade432 1<?php
a9229942 2
11ade432
AE
3namespace wcf\data;
4
5/**
6 * Abstract class for all cached data holder objects.
a9229942
TD
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
11ade432 12 */
a9229942
TD
13interface IEditableCachedObject extends IEditableObject
14{
15 /**
16 * Resets the cache of this object type.
17 */
18 public static function resetCache();
11ade432 19}