Merge pull request #8 from wbb3addons/dboSortIndexAssociation
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / system / cleanup / CleanupAdapter.class.php
CommitLineData
11ade432
AE
1<?php\r
2namespace wcf\system\cleanup;\r
3\r
4/**\r
5 * Default interface for cleanup adapters.\r
6 * \r
7 * @author Alexander Ebert\r
8 * @copyright 2001-2011 WoltLab GmbH\r
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>\r
10 * @package com.woltlab.wcf\r
11 * @subpackage system.cleanup\r
12 * @category Community Framework\r
13 */\r
14interface CleanupAdapter {\r
15 /**\r
16 * Executes this adapter.\r
17 * \r
18 * @param array $objectIDs\r
19 */\r
20 public function execute(array $objectIDs);\r
21}\r
22?>