public function SupportTicket::getRevisionCreationTime in Support Ticketing System 8
Gets the support ticket revision creation timestamp.
Return value
int The UNIX timestamp of when this revision was created.
Overrides SupportTicketInterface::getRevisionCreationTime
File
- modules/
support_ticket/ src/ Entity/ SupportTicket.php, line 248 - Contains \Drupal\support_ticket\Entity\SupportTicket.
Class
- SupportTicket
- Defines the support ticket entity class.
Namespace
Drupal\support_ticket\EntityCode
public function getRevisionCreationTime() {
return $this
->get('revision_timestamp')->value;
}