You are here

ChangesFactoryInterface.php in Replication 8.2

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

Namespace

Drupal\replication

File

src/ChangesFactoryInterface.php
View source
<?php

namespace Drupal\replication;

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

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

}

Interfaces