edbeb1867694176540f615621e6c12723364d0cc
[yaffs-website] / 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 }