You are here

public function Invite::getCreatedTime in Invite 8

Gets the Invite creation timestamp.

Return value

int Creation timestamp of the Invite.

Overrides InviteInterface::getCreatedTime

File

src/Entity/Invite.php, line 120

Class

Invite
Defines the Invite entity.

Namespace

Drupal\invite\Entity

Code

public function getCreatedTime() {
  return $this
    ->get('created')->value;
}