public function Feed::getChangedTime in Feeds 8.3
Gets the timestamp of the last entity change for the current translation.
Return value
int The timestamp of the last entity save operation.
Overrides EntityChangedTrait::getChangedTime
File
- src/
Entity/ Feed.php, line 154
Class
- Feed
- Defines the feed entity class.
Namespace
Drupal\feeds\EntityCode
public function getChangedTime() {
return (int) $this
->get('changed')->value;
}