You are here

WorkspaceMergerInterface.php in Drupal 10

Namespace

Drupal\workspaces

File

core/modules/workspaces/src/WorkspaceMergerInterface.php
View source
<?php

namespace Drupal\workspaces;


/**
 * Defines an interface for the workspace merger.
 *
 * @internal
 */
interface WorkspaceMergerInterface extends WorkspaceOperationInterface {

  /**
   * Merges the contents of the source workspace into the target workspace.
   */
  public function merge();

}

Interfaces

Namesort descending Description
WorkspaceMergerInterface Defines an interface for the workspace merger.