You are here

public function SupportTicket::getTitle in Support Ticketing System 8

Gets the support ticket title.

Return value

string Title of the support ticket.

Overrides SupportTicketInterface::getTitle

File

modules/support_ticket/src/Entity/SupportTicket.php, line 158
Contains \Drupal\support_ticket\Entity\SupportTicket.

Class

SupportTicket
Defines the support ticket entity class.

Namespace

Drupal\support_ticket\Entity

Code

public function getTitle() {
  return $this
    ->get('title')->value;
}