Fixes setup
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / ITitledDatabaseObject.class.php
CommitLineData
ee3e82c1
MS
1<?php
2namespace wcf\data;
3
4/**
5 * This interface provides a method to access the title of a database object.
6 *
7 * @author Matthias Schmidt
8 * @copyright 2001-2012 WoltLab GmbH
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package com.woltlab.wcf
11 * @subpackage data
9f959ced 12 * @category Community Framework
ee3e82c1
MS
13 */
14interface ITitledDatabaseObject {
15 /**
16 * Returns the title of this database object.
17 *
18 * @return string
19 */
20 public function getTitle();
58e1d71f 21}