Add the new variable `FileProcessorFormField::$bigPreview` with getter and setter.
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / ITitledObject.class.php
CommitLineData
ee3e82c1 1<?php
a9229942 2
ee3e82c1
MS
3namespace wcf\data;
4
5/**
06f0b025 6 * Every titled 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>
ee3e82c1 11 */
a9229942
TD
12interface ITitledObject
13{
14 /**
15 * Returns the title of the object.
a9229942 16 */
fe838445 17 public function getTitle(): string;
58e1d71f 18}