Mercurial > hg > isophonics-drupal-site
annotate core/modules/workspaces/src/WorkspacePublisherInterface.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 129ea1e6d783 |
children |
rev | line source |
---|---|
Chris@17 | 1 <?php |
Chris@17 | 2 |
Chris@17 | 3 namespace Drupal\workspaces; |
Chris@17 | 4 |
Chris@17 | 5 /** |
Chris@17 | 6 * Defines an interface for the workspace publisher. |
Chris@17 | 7 * |
Chris@17 | 8 * @internal |
Chris@17 | 9 */ |
Chris@17 | 10 interface WorkspacePublisherInterface extends WorkspaceOperationInterface { |
Chris@17 | 11 |
Chris@17 | 12 /** |
Chris@17 | 13 * Publishes the contents of a workspace to the default (Live) workspace. |
Chris@17 | 14 */ |
Chris@17 | 15 public function publish(); |
Chris@17 | 16 |
Chris@17 | 17 } |