public function ReplicationLog::getHistory in Replication 8
Same name and namespace in other branches
- 8.2 src/Entity/ReplicationLog.php \Drupal\replication\Entity\ReplicationLog::getHistory()
Gets the entire history.
Return value
array List of history values.
Overrides ReplicationLogInterface::getHistory
File
- src/
Entity/ ReplicationLog.php, line 35
Class
- ReplicationLog
- The replication log entity type.
Namespace
Drupal\replication\EntityCode
public function getHistory() {
return $this
->get('history')
->getValue();
}