You are here

WorkspacePublisherInterface.php in Drupal 8

Namespace

Drupal\workspaces

File

core/modules/workspaces/src/WorkspacePublisherInterface.php
View source
<?php

namespace Drupal\workspaces;


/**
 * Defines an interface for the workspace publisher.
 *
 * @internal
 */
interface WorkspacePublisherInterface extends WorkspaceOperationInterface {

  /**
   * Publishes the contents of a workspace to the default (Live) workspace.
   */
  public function publish();

}

Interfaces

Namesort descending Description
WorkspacePublisherInterface Defines an interface for the workspace publisher.