Major overhaul of caching system (work in progress)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / system / cleanup / ICleanupAdapter.class.php
CommitLineData
158bd3ca
TD
1<?php
2namespace wcf\system\cleanup;
3
4/**
5 * Default interface for cleanup adapters.
6 *
7 * @author Alexander Ebert
9f959ced 8 * @copyright 2001-2012 WoltLab GmbH
158bd3ca
TD
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package com.woltlab.wcf
11 * @subpackage system.cleanup
9f959ced 12 * @category Community Framework
158bd3ca
TD
13 */
14interface ICleanupAdapter {
15 /**
16 * Executes this adapter.
17 *
18 * @param array $objectIDs
19 */
20 public function execute(array $objectIDs);
dcb3a44c 21}