Add the new variable `FileProcessorFormField::$bigPreview` with getter and setter.
[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 */
12 interface ICategorizedObject
13 {
14 /**
15 * Returns the category this object belongs to.
16 *
17 * @return \wcf\data\category\Category
18 */
19 public function getCategory();
20 }