Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / ILinkableObject.class.php
CommitLineData
ee3e82c1 1<?php
a9229942 2
ee3e82c1
MS
3namespace wcf\data;
4
5/**
06f0b025 6 * Every linkable object has to implement this interface.
a9229942
TD
7 *
8 * @author Matthias Schmidt
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
ee3e82c1 12 */
a9229942
TD
13interface ILinkableObject
14{
15 /**
16 * Returns the link to the object.
17 *
18 * @return string
19 */
20 public function getLink();
58e1d71f 21}