You are here

public function SupportTicketType::setNewRevision in Support Ticketing System 8

Sets whether a new revision should be created by default.

Parameters

bool $new_revision_: TRUE if a new revision should be created by default.

Overrides SupportTicketTypeInterface::setNewRevision

File

modules/support_ticket/src/Entity/SupportTicketType.php, line 127
Contains \Drupal\support_ticket\Entity\SupportTicketType.

Class

SupportTicketType
Defines the SupportTicket type configuration entity.

Namespace

Drupal\support_ticket\Entity

Code

public function setNewRevision($new_revision) {
  $this->new_revision = $new_revision;
}