Added detailed list of received/given likes in user profiles
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IFeedEntry.class.php
1 <?php
2 namespace wcf\data;
3
4 /**
5 * Every feed entry should implement this interface.
6 *
7 * @author Tim Duesterhus
8 * @copyright 2001-2014 WoltLab GmbH
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package com.woltlab.wcf
11 * @subpackage data
12 * @category Community Framework
13 */
14 interface IFeedEntry extends IMessage {
15 /**
16 * Returns the number of comments.
17 *
18 * @return integer
19 */
20 public function getComments();
21
22 /**
23 * Returns a list of category names.
24 *
25 * @return array<string>
26 */
27 public function getCategories();
28 }