You are here

public function SequenceIndex::__construct in Multiversion 8

Same name and namespace in other branches
  1. 8.2 src/Entity/Index/SequenceIndex.php \Drupal\multiversion\Entity\Index\SequenceIndex::__construct()

Parameters

\Drupal\key_value\KeyValueStore\KeyValueSortedSetFactoryInterface $sorted_set_factory:

\Drupal\multiversion\Workspace\WorkspaceManagerInterface $workspace_manager:

\Drupal\multiversion\MultiversionManagerInterface $multiversion_manager:

File

src/Entity/Index/SequenceIndex.php, line 42

Class

SequenceIndex

Namespace

Drupal\multiversion\Entity\Index

Code

public function __construct(KeyValueSortedSetFactoryInterface $sorted_set_factory, WorkspaceManagerInterface $workspace_manager, MultiversionManagerInterface $multiversion_manager) {
  $this->sortedSetFactory = $sorted_set_factory;
  $this->workspaceManager = $workspace_manager;
  $this->multiversionManager = $multiversion_manager;
}