You are here

public function Connection::getCreatedTime in RedHen CRM 8

Gets the Connection creation timestamp.

Return value

int Creation timestamp of the Connection.

Overrides ConnectionInterface::getCreatedTime

File

modules/redhen_connection/src/Entity/Connection.php, line 91

Class

Connection
Defines the Connection entity.

Namespace

Drupal\redhen_connection\Entity

Code

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