function WorkspacePublishEvent::setPublishingStoppedReason

Same name and namespace in other branches
  1. 10 core/modules/workspaces/src/Event/WorkspacePublishEvent.php \Drupal\workspaces\Event\WorkspacePublishEvent::setPublishingStoppedReason()

Sets the reason for stopping the workspace publication.

Parameters

string|\Stringable $reason: The reason for stopping the workspace publication.

Return value

$this

File

core/modules/workspaces/src/Event/WorkspacePublishEvent.php, line 106

Class

WorkspacePublishEvent
Defines the workspace publish event.

Namespace

Drupal\workspaces\Event

Code

public function setPublishingStoppedReason(string|\Stringable $reason) : static {
    $this->publishingStoppedReason = $reason;
    return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.