Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\aggregator\FeedStorageInterface. | |
*/ | |
namespace Drupal\aggregator; | |
use Drupal\Core\Entity\ContentEntityStorageInterface; | |
/** | |
* Defines an interface for aggregator feed entity storage classes. | |
*/ | |
interface FeedStorageInterface extends ContentEntityStorageInterface { | |
/** | |
* Returns the fids of feeds that need to be refreshed. | |
* | |
* @return array | |
* A list of feed ids to be refreshed. | |
*/ | |
public function getFeedIdsToRefresh(); | |
} |