Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / ICategorizedObject.class.php
1 <?php
2
3 namespace wcf\data;
4
5 /**
6 * Every categorized object has to implement this interface.
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
12 */
13 interface ICategorizedObject
14 {
15 /**
16 * Returns the category this object belongs to.
17 *
18 * @return \wcf\data\category\Category
19 */
20 public function getCategory();
21 }