* @package WoltLabSuite\Core\Data */ interface IFeedEntry extends IMessage { /** * Returns the number of comments. * * @return int */ public function getComments(); /** * Returns a list of category names. * * @return string[] */ public function getCategories(); }