public function Changes::includeDocs in Replication 8
Same name and namespace in other branches
- 8.2 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 123
Class
Namespace
Drupal\replication\ChangesCode
public function includeDocs($include_docs) {
$this->includeDocs = $include_docs;
return $this;
}