Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / workspaces / src / WorkspacePublisherInterface.php
1 <?php
2
3 namespace Drupal\workspaces;
4
5 /**
6  * Defines an interface for the workspace publisher.
7  *
8  * @internal
9  */
10 interface WorkspacePublisherInterface extends WorkspaceOperationInterface {
11
12   /**
13    * Publishes the contents of a workspace to the default (Live) workspace.
14    */
15   public function publish();
16
17 }