Mercurial > hg > isophonics-drupal-site
comparison core/modules/workspaces/src/WorkspacePublisherInterface.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
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 } |