You are here

public function ReplicationLog::getHistory in Replication 8

Same name and namespace in other branches
  1. 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\Entity

Code

public function getHistory() {
  return $this
    ->get('history')
    ->getValue();
}