Implemented abstract version tracking and comparison (wip)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IVersionTrackerObject.class.php
1 <?php
2 namespace wcf\data;
3
4 /**
5 * Represents objects that support some of their properties to be saved.
6 *
7 * @author Alexander Ebert
8 * @copyright 2001-2017 WoltLab GmbH
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package WoltLabSuite\Core\Data
11 */
12 interface IVersionTrackerObject extends IUserContent {
13 /**
14 * Returns the object's unique id.
15 *
16 * @return integer
17 */
18 public function getObjectID();
19 }