WorkspaceMergerInterface.php in Drupal 9
Same filename and directory in other branches
Namespace
Drupal\workspacesFile
core/modules/workspaces/src/WorkspaceMergerInterface.phpView 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
Name | Description |
---|---|
WorkspaceMergerInterface | Defines an interface for the workspace merger. |