You are here

public function Changes::includeDocs in Replication 8.2

Same name and namespace in other branches
  1. 8 src/Changes/Changes.php \Drupal\replication\Changes\Changes::includeDocs()

Set the flag for including entities in the changeset.

Parameters

bool $include_docs: Whether to include entities in the changeset.

Return value

\Drupal\replication\Changes\ChangesInterface Returns $this.

Overrides ChangesInterface::includeDocs

File

src/Changes/Changes.php, line 116

Class

Changes

Namespace

Drupal\replication\Changes

Code

public function includeDocs($include_docs) {
  $this->includeDocs = $include_docs;
  return $this;
}