Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IFeedEntry.class.php
1 <?php
2
3 namespace wcf\data;
4
5 /**
6 * Every feed entry should implement this interface.
7 *
8 * @author Tim Duesterhus
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 IFeedEntry extends IMessage
14 {
15 /**
16 * Returns the number of comments.
17 *
18 * @return int
19 */
20 public function getComments();
21
22 /**
23 * Returns a list of category names.
24 *
25 * @return string[]
26 */
27 public function getCategories();
28 }