comparison core/modules/aggregator/src/FeedStorage.php @ 18:af1871eacc83

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:33:08 +0100
parents 129ea1e6d783
children
comparison
equal deleted inserted replaced
17:129ea1e6d783 18:af1871eacc83
16 * {@inheritdoc} 16 * {@inheritdoc}
17 */ 17 */
18 public function getFeedIdsToRefresh() { 18 public function getFeedIdsToRefresh() {
19 return $this->database->query('SELECT fid FROM {' . $this->getBaseTable() . '} WHERE queued = 0 AND checked + refresh < :time AND refresh <> :never', [ 19 return $this->database->query('SELECT fid FROM {' . $this->getBaseTable() . '} WHERE queued = 0 AND checked + refresh < :time AND refresh <> :never', [
20 ':time' => REQUEST_TIME, 20 ':time' => REQUEST_TIME,
21 ':never' => AGGREGATOR_CLEAR_NEVER, 21 ':never' => static::CLEAR_NEVER,
22 ])->fetchCol(); 22 ])->fetchCol();
23 } 23 }
24 24
25 } 25 }