Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / IFeedEntryWithEnclosure.class.php
1 <?php
2
3 namespace wcf\data;
4
5 use wcf\system\feed\enclosure\FeedEnclosure;
6
7 /**
8 * Every feed entry that supports enclosure tags should implement this interface.
9 *
10 * @author Marcel Werk
11 * @copyright 2001-2019 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 * @package WoltLabSuite\Core\Data
14 */
15 interface IFeedEntryWithEnclosure extends IFeedEntry
16 {
17 /**
18 * Returns the enclosure object
19 *
20 * @return FeedEnclosure|null
21 */
22 public function getEnclosure();
23 }