You are here

public function ReplicationLog::setSessionId in Replication 8

Same name and namespace in other branches
  1. 8.2 src/Entity/ReplicationLog.php \Drupal\replication\Entity\ReplicationLog::setSessionId()

Sets the session id.

Parameters

string $session_id: The session id to set.

Return value

$this

Overrides ReplicationLogInterface::setSessionId

File

src/Entity/ReplicationLog.php, line 57

Class

ReplicationLog
The replication log entity type.

Namespace

Drupal\replication\Entity

Code

public function setSessionId($session_id) {
  $this
    ->set('session_id', $session_id);
  return $this;
}