public Feed::setLastCheckedTime($checked)
Sets the time when this feed was queued for refresh, 0 if not queued.
Parameters
int $checked: The timestamp of the last refresh.
Return value
\Drupal\aggregator\FeedInterface The class instance that this method is called on.
Overrides FeedInterface::setLastCheckedTime
File
- core/modules/aggregator/src/Entity/Feed.php, line 328
Class
- Feed
- Defines the aggregator feed entity class.
Namespace
Drupal\aggregator\Entity
Code
public function setLastCheckedTime($checked) { $this->set('checked', $checked); return $this; }
Please login to continue.