Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / aggregator / src / FeedStorageInterface.php
1 <?php
2
3 namespace Drupal\aggregator;
4
5 use Drupal\Core\Entity\ContentEntityStorageInterface;
6
7 /**
8  * Defines an interface for aggregator feed entity storage classes.
9  */
10 interface FeedStorageInterface extends ContentEntityStorageInterface {
11
12   /**
13    * Denotes that a feed's items should never expire.
14    */
15   const CLEAR_NEVER = 0;
16
17   /**
18    * Returns the fids of feeds that need to be refreshed.
19    *
20    * @return array
21    *   A list of feed ids to be refreshed.
22    */
23   public function getFeedIdsToRefresh();
24
25 }