You are here

AllDocsFactoryInterface.php in Replication 8.2

Same filename and directory in other branches
  1. 8 src/AllDocsFactoryInterface.php

Namespace

Drupal\replication

File

src/AllDocsFactoryInterface.php
View source
<?php

namespace Drupal\replication;

use Drupal\multiversion\Entity\WorkspaceInterface;
interface AllDocsFactoryInterface {

  /**
   * Constructs a new AllDocs instance.
   *
   * @param \Drupal\multiversion\Entity\WorkspaceInterface $workspace
   *
   * @return \Drupal\replication\AllDocs\AllDocsInterface
   */
  public function get(WorkspaceInterface $workspace);

}

Interfaces